diff --git a/DESCRIPTION b/DESCRIPTION
index c31d66f..a3bd124 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,49 +1,22 @@
Package: discretewq
-Title: Integrated Dataset of Discrete Water Quality in the San Francisco Estuary
+Title: Integrated Dataset of Discrete Water Quality in the San Francisco
+ Estuary
Version: 2.4.0.9000
-Authors@R:
- c(person(given = "Samuel M",
- family = "Bashevkin",
- role = c("aut", "cre"),
- email = "sam.bashevkin@waterboards.ca.gov",
+Authors@R: c(
+ person("Samuel M", "Bashevkin", , "sam.bashevkin@waterboards.ca.gov", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-7406-7089")),
- person(given = "Dave",
- family = "Bosworth",
- role = c("aut"),
- email = "David.Bosworth@water.ca.gov",
+ person("Dave", "Bosworth", , "David.Bosworth@water.ca.gov", role = "aut",
comment = c(ORCID = "0000-0003-0740-3390")),
- person(given = "Sarah",
- family = "Perry",
- role = c("aut"),
- email = "Sarah.Perry@water.ca.gov",
+ person("Sarah", "Perry", , "Sarah.Perry@water.ca.gov", role = "aut",
comment = c(ORCID = "0000-0002-2561-8195")),
- person(given = "Elizabeth B",
- family = "Stumpner",
- role = c("aut"),
- email = "Elizabeth.Stumpner@water.ca.gov",
+ person("Elizabeth B", "Stumpner", , "Elizabeth.Stumpner@water.ca.gov", role = "aut",
comment = c(ORCID = "0000-0003-2356-2244")),
- person(given = "Rosemary",
- family = "Hartman",
- role = c("ctb"),
- email = "Rosemary.Hartman@water.ca.gov",
- comment = c(ORCID = "0000-0002-0642-183X")))
-Description: Produce an integrated dataset of discrete water quality measurements using any combination of the 16 source datasets included.
+ person("Rosemary", "Hartman", , "Rosemary.Hartman@water.ca.gov", role = "ctb",
+ comment = c(ORCID = "0000-0002-0642-183X"))
+ )
+Description: Produce an integrated dataset of discrete water quality
+ measurements using any combination of the 17 source datasets included.
License: GPL-3
-Encoding: UTF-8
-LazyData: true
-LazyDataCompression: xz
-Roxygen: list(markdown = TRUE)
-RoxygenNote: 7.2.3
-Suggests:
- readr,
- purrr,
- spelling,
- testthat,
- covr,
- tibble,
- readxl,
- hms,
- dataRetrieval
Depends:
R (>= 2.10)
Imports:
@@ -53,6 +26,22 @@ Imports:
stringr,
tidyr,
wql
+Suggests:
+ conflicted,
+ covr,
+ dataRetrieval,
+ hms,
+ purrr,
+ readr,
+ readxl,
+ spelling,
+ testthat,
+ tibble
Remotes:
InteragencyEcologicalProgram/deltamapr
+Encoding: UTF-8
Language: en-US
+LazyData: true
+LazyDataCompression: xz
+Roxygen: list(markdown = TRUE)
+RoxygenNote: 7.2.3
diff --git a/NEWS.md b/NEWS.md
index 72f7d1a..60cc597 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,7 @@
# discretewq (development version)
+* Added `DOP` water quality data.
+
# discretewq 2.4.0
* Added temperature and conductivity to `USGS_CAWSC`
diff --git a/R/data.R b/R/data.R
index e48f535..6608d1c 100644
--- a/R/data.R
+++ b/R/data.R
@@ -82,6 +82,40 @@
"DJFMP"
+# DOP -------------------------------------------------------------------
+
+#' Directed Outflow Project water quality data
+#'
+#' Water quality data from the ICF/USBR Directed Outflow Project.
+#'
+#' @encoding UTF-8
+#' @format a tibble with 3,473 rows and 16 variables
+#' \describe{
+#' \item{Source}{Name of the source dataset.}
+#' \item{Station}{Station where sample was collected. Includes Station_Code
+#' and Habitat from the source dataset because multiple habitats are collected
+#' at each station.}
+#' \item{Latitude}{Latitude at start of zooplankton tow in decimal degrees.}
+#' \item{Longitude}{Longitude at start of zooplankton tow in decimal degrees.}
+#' \item{Field_coords}{Were lat/long coordinates collected in the field (TRUE), or do they represent the location of a fixed station (FALSE)?}
+#' \item{Date}{Date sample was collected.}
+#' \item{Datetime}{Date and time of sample collection.}
+#' \item{Depth}{Bottom depth at start of trawl (m).}
+#' \item{Secchi}{Secchi depth (cm).}
+#' \item{Temperature}{Temperature (°C) at surface.}
+#' \item{Salinity}{Salinity at surface.}
+#' \item{Conductivity}{Specific conductance (\eqn{\mu}S \ifelse{html}{\out{cm-1}}{\eqn{cm^{-1}}}) at surface.}
+#' \item{DissolvedOxygen}{Dissolved oxygen (mg/L) at surface.}
+#' \item{pH}{pH (dimensionless) at surface.}
+#' \item{TurbidityFNU}{Turbidity (FNU) at surface.}
+#' \item{Chlorophyll}{Chlorophyll-a concentration (\eqn{\mu}g \ifelse{html}{\out{L-1}}{\eqn{L^{-1}}}) at surface.}
+#' }
+#'
+#' @details More metadata and information on methods are available \href{https://portal.edirepository.org/nis/metadataviewer?packageid=edi.1187.4}{here}.
+#' @seealso \code{\link{wq}}
+"DOP"
+
+
# EDSM --------------------------------------------------------------------
#' EDSM water quality data
@@ -234,7 +268,7 @@
#' Water quality data from the California Department of Water Resources North Central Region Office.
#'
#' @encoding UTF-8
-#' @format a tibble with 10,250 rows and 49 variables
+#' @format a tibble with 10,652 rows and 49 variables
#' \describe{
#' \item{Source}{Name of the source dataset.}
#' \item{Station}{Station where sample was collected.}
diff --git a/R/wq.R b/R/wq.R
index e24a405..912c97a 100644
--- a/R/wq.R
+++ b/R/wq.R
@@ -5,6 +5,7 @@
#' Choices include "20mm" (20mm Survey, \code{\link{twentymm}}),
#' "Baystudy" (Bay Study, \code{\link{baystudy}}),
#' "DJFMP" (Delta Juvenile Fish Monitoring Program, \code{\link{DJFMP}}),
+#' "DOP" (Directed Outflow Project \code{\link{DOP}})),
#' "EDSM" (Enhanced Delta Smelt Monitoring, \code{\link{EDSM}}),
#' "EMP" (Environmental Monitoring Program, \code{\link{EMP}}),
#' "FMWT" (Fall Midwater Trawl, \code{\link{FMWT}}),
@@ -29,6 +30,7 @@
#' "20mm",
#' "Baystudy",
#' "DJFMP",
+#' "DOP",
#' "EDSM",
#' "EMP",
#' "FMWT",
@@ -60,6 +62,7 @@ wq <- function(Sources = NULL,
"20mm",
"Baystudy",
"DJFMP",
+ "DOP",
"EDSM",
"EMP",
"FMWT",
@@ -105,6 +108,10 @@ wq <- function(Sources = NULL,
WQ_list[["DJFMP"]] <- discretewq::DJFMP
}
+ if ("DOP" %in% Sources) {
+ WQ_list[["DOP"]] <- discretewq::DOP
+ }
+
if ("EDSM" %in% Sources) {
WQ_list[["EDSM"]] <- discretewq::EDSM
}
diff --git a/README.Rmd b/README.Rmd
index a53377f..2b00a01 100644
--- a/README.Rmd
+++ b/README.Rmd
@@ -46,6 +46,7 @@ Data <- wq(
"20mm",
"Baystudy",
"DJFMP",
+ "DOP",
"EDSM",
"EMP",
"FMWT",
@@ -81,7 +82,7 @@ CDFW. 2023a. Fall Midwater Trawl data. [https://filelib.wildlife.ca.gov/public/T
CDFW. 2023b. Summer Townet data. [https://filelib.wildlife.ca.gov/public/TownetFallMidwaterTrawl/TNS%20MS%20Access%20Data/TNS%20data/](https://filelib.wildlife.ca.gov/public/TownetFallMidwaterTrawl/TNS%20MS%20Access%20Data/TNS%20data/).
-CDWR. 2022. Water Quality Evaluation Section, North Central Region Office. [https://wdl.water.ca.gov/waterdatalibrary/WaterQualityDataLib.aspx](https://wdl.water.ca.gov/waterdatalibrary/WaterQualityDataLib.aspx).
+CDWR. 2023. Water Quality Evaluation Section, North Central Region Office. [https://wdl.water.ca.gov/waterdatalibrary/WaterQualityDataLib.aspx](https://wdl.water.ca.gov/waterdatalibrary/WaterQualityDataLib.aspx).
Cloern, J. E., and T. S. Schraga. 2016. USGS Measurements of Water Quality in San Francisco Bay (CA), 1969-2015 (ver. 3.0 June 2017). U. S. Geological Survey data release. [doi:https://doi.org/10.5066/F7TQ5ZPR](https://doi.org/10.5066/F7TQ5ZPR)
@@ -103,6 +104,8 @@ O’Rear, T., J. Durand, and P. Moyle. 2022. Suisun Marsh Fish Study. [https://w
Schraga, T. S., E. S. Nejad, C. A. Martin, and J. E. Cloern. 2020. USGS measurements of water quality in San Francisco Bay (CA), beginning in 2016 (ver. 3.0, March 2020). U. S. Geological Survey data release. [doi:https://doi.org/10.5066/F7D21WGF](https://doi.org/10.5066/F7D21WGF)
+Schultz, A. A. and A. J. Kalmbach. 2023. Directed Outflow Project Lower Trophic Study ver 4. Environmental Data Initiative. [doi:10.6073/pasta/86a01140eb3bb756ee9f7f8dab8aefc4](https://portal.edirepository.org/nis/metadataviewer?packageid=edi.1187.4).
+
United States Fish and Wildlife Service, T. Senegal, R. Mckenzie, J. Speegle, B. Perales, D. Bridgman, K. Erly, S. Staiger, A. Arrambide, and M. Gilbert. 2022. Interagency Ecological Program and US Fish and Wildlife Service: San Francisco Estuary Enhanced Delta Smelt Monitoring Program data, 2016-2021 ver 8. Environmental Data Initiative. [doi:10.6073/pasta/e1a540c161b7be56b941df50fd7b44c5](https://portal.edirepository.org/nis/metadataviewer?packageid=edi.415.8)
U.S. Geological Survey. 2022. USGS water data for the Nation: U.S. Geological Survey National Water Information System database, accessed October 21, 2022, at
diff --git a/README.md b/README.md
index 84f085d..4ee2f41 100644
--- a/README.md
+++ b/README.md
@@ -38,6 +38,7 @@ Data <- wq(
"20mm",
"Baystudy",
"DJFMP",
+ "DOP",
"EDSM",
"EMP",
"FMWT",
@@ -55,86 +56,86 @@ Data <- wq(
)
str(Data)
-#> tibble [353,850 × 79] (S3: tbl_df/tbl/data.frame)
-#> $ Source : chr [1:353850] "20mm" "20mm" "20mm" "20mm" ...
-#> $ Station : chr [1:353850] "504" "519" "809" "901" ...
-#> $ Latitude : num [1:353850] 38.1 38.1 38.1 38 38 ...
-#> $ Longitude : num [1:353850] -122 -122 -122 -122 -122 ...
-#> $ Field_coords : logi [1:353850] FALSE FALSE FALSE FALSE FALSE FALSE ...
-#> $ Date : POSIXct[1:353850], format: "1997-05-03" "1997-05-03" ...
-#> $ Datetime : POSIXct[1:353850], format: "1997-05-03 07:50:00" "1997-05-03 08:36:00" ...
-#> $ Depth : num [1:353850] 7.62 3.05 12.19 2.44 7.62 ...
-#> $ Tide : chr [1:353850] "Ebb" "Ebb" "Flood" "Flood" ...
-#> $ Secchi : num [1:353850] 16 13 63 78 90 48 58 70 68 74 ...
-#> $ Temperature : num [1:353850] 17.1 17.2 18.8 19.1 20 20.2 20.6 20.6 21.4 19.5 ...
-#> $ Conductivity : num [1:353850] 1490 652 239 250 276 311 302 339 321 230 ...
-#> $ Conductivity_bottom : num [1:353850] 1949 1174 248 251 275 ...
-#> $ Notes : chr [1:353850] NA NA NA NA ...
-#> $ Temperature_bottom : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DissolvedOxygen : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DissolvedOxygen_bottom : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ Microcystis : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ Chlorophyll_Sign : chr [1:353850] NA NA NA NA ...
-#> $ Chlorophyll : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DissolvedOxygenPercent : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DissolvedOxygenPercent_bottom: num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ pH : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ pH_bottom : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TurbidityNTU : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TurbidityNTU_bottom : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TurbidityFNU : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TurbidityFNU_bottom : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ Pheophytin_Sign : chr [1:353850] NA NA NA NA ...
-#> $ Pheophytin : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TotAlkalinity_Sign : chr [1:353850] NA NA NA NA ...
-#> $ TotAlkalinity : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TotAmmonia_Sign : chr [1:353850] NA NA NA NA ...
-#> $ TotAmmonia : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DissAmmonia_Sign : chr [1:353850] NA NA NA NA ...
-#> $ DissAmmonia : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DissBromide_Sign : chr [1:353850] NA NA NA NA ...
-#> $ DissBromide : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DissCalcium_Sign : chr [1:353850] NA NA NA NA ...
-#> $ DissCalcium : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TotChloride_Sign : chr [1:353850] NA NA NA NA ...
-#> $ TotChloride : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DissChloride_Sign : chr [1:353850] NA NA NA NA ...
-#> $ DissChloride : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DissNitrateNitrite_Sign : chr [1:353850] NA NA NA NA ...
-#> $ DissNitrateNitrite : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DOC_Sign : chr [1:353850] NA NA NA NA ...
-#> $ DOC : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TOC_Sign : chr [1:353850] NA NA NA NA ...
-#> $ TOC : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DON_Sign : chr [1:353850] NA NA NA NA ...
-#> $ DON : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TON_Sign : chr [1:353850] NA NA NA NA ...
-#> $ TON : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DissOrthophos_Sign : chr [1:353850] NA NA NA NA ...
-#> $ DissOrthophos : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TotPhos_Sign : chr [1:353850] NA NA NA NA ...
-#> $ TotPhos : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ DissSilica_Sign : chr [1:353850] NA NA NA NA ...
-#> $ DissSilica : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TDS_Sign : chr [1:353850] NA NA NA NA ...
-#> $ TDS : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TSS_Sign : chr [1:353850] NA NA NA NA ...
-#> $ TSS : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ VSS_Sign : chr [1:353850] NA NA NA NA ...
-#> $ VSS : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ TKN_Sign : chr [1:353850] NA NA NA NA ...
-#> $ TKN : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ Secchi_estimated : logi [1:353850] NA NA NA NA NA NA ...
-#> $ Sample_depth_surface : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ Sample_depth_bottom : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ Salinity : num [1:353850] 0.747 0.316 0.113 0.118 0.131 ...
-#> $ Salinity_bottom : num [1:353850] 0.989 0.582 0.117 0.119 0.13 ...
-#> $ Sample_depth_nutr_surface : num [1:353850] NA NA NA NA NA NA NA NA NA NA ...
-#> $ MonthYear : POSIXct[1:353850], format: "1997-05-01" "1997-05-01" ...
-#> $ Year : num [1:353850] 1997 1997 1997 1997 1997 ...
-#> $ StationID : chr [1:353850] "20mm 504" "20mm 519" "20mm 809" "20mm 901" ...
-#> $ Month : num [1:353850] 5 5 5 5 5 5 5 5 5 5 ...
-#> $ Season : chr [1:353850] "Spring" "Spring" "Spring" "Spring" ...
+#> tibble [357,725 × 79] (S3: tbl_df/tbl/data.frame)
+#> $ Source : chr [1:357725] "20mm" "20mm" "20mm" "20mm" ...
+#> $ Station : chr [1:357725] "504" "519" "809" "901" ...
+#> $ Latitude : num [1:357725] 38.1 38.1 38.1 38 38 ...
+#> $ Longitude : num [1:357725] -122 -122 -122 -122 -122 ...
+#> $ Field_coords : logi [1:357725] FALSE FALSE FALSE FALSE FALSE FALSE ...
+#> $ Date : POSIXct[1:357725], format: "1997-05-03" "1997-05-03" ...
+#> $ Datetime : POSIXct[1:357725], format: "1997-05-03 07:50:00" "1997-05-03 08:36:00" ...
+#> $ Depth : num [1:357725] 7.62 3.05 12.19 2.44 7.62 ...
+#> $ Tide : chr [1:357725] "Ebb" "Ebb" "Flood" "Flood" ...
+#> $ Secchi : num [1:357725] 16 13 63 78 90 48 58 70 68 74 ...
+#> $ Temperature : num [1:357725] 17.1 17.2 18.8 19.1 20 20.2 20.6 20.6 21.4 19.5 ...
+#> $ Conductivity : num [1:357725] 1490 652 239 250 276 311 302 339 321 230 ...
+#> $ Conductivity_bottom : num [1:357725] 1949 1174 248 251 275 ...
+#> $ Notes : chr [1:357725] NA NA NA NA ...
+#> $ Temperature_bottom : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DissolvedOxygen : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ Salinity : num [1:357725] 0.747 0.316 0.113 0.118 0.131 ...
+#> $ pH : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TurbidityFNU : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ Chlorophyll : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DissolvedOxygen_bottom : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ Microcystis : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ Chlorophyll_Sign : chr [1:357725] NA NA NA NA ...
+#> $ DissolvedOxygenPercent : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DissolvedOxygenPercent_bottom: num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ pH_bottom : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TurbidityNTU : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TurbidityNTU_bottom : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TurbidityFNU_bottom : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ Pheophytin_Sign : chr [1:357725] NA NA NA NA ...
+#> $ Pheophytin : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TotAlkalinity_Sign : chr [1:357725] NA NA NA NA ...
+#> $ TotAlkalinity : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TotAmmonia_Sign : chr [1:357725] NA NA NA NA ...
+#> $ TotAmmonia : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DissAmmonia_Sign : chr [1:357725] NA NA NA NA ...
+#> $ DissAmmonia : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DissBromide_Sign : chr [1:357725] NA NA NA NA ...
+#> $ DissBromide : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DissCalcium_Sign : chr [1:357725] NA NA NA NA ...
+#> $ DissCalcium : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TotChloride_Sign : chr [1:357725] NA NA NA NA ...
+#> $ TotChloride : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DissChloride_Sign : chr [1:357725] NA NA NA NA ...
+#> $ DissChloride : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DissNitrateNitrite_Sign : chr [1:357725] NA NA NA NA ...
+#> $ DissNitrateNitrite : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DOC_Sign : chr [1:357725] NA NA NA NA ...
+#> $ DOC : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TOC_Sign : chr [1:357725] NA NA NA NA ...
+#> $ TOC : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DON_Sign : chr [1:357725] NA NA NA NA ...
+#> $ DON : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TON_Sign : chr [1:357725] NA NA NA NA ...
+#> $ TON : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DissOrthophos_Sign : chr [1:357725] NA NA NA NA ...
+#> $ DissOrthophos : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TotPhos_Sign : chr [1:357725] NA NA NA NA ...
+#> $ TotPhos : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ DissSilica_Sign : chr [1:357725] NA NA NA NA ...
+#> $ DissSilica : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TDS_Sign : chr [1:357725] NA NA NA NA ...
+#> $ TDS : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TSS_Sign : chr [1:357725] NA NA NA NA ...
+#> $ TSS : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ VSS_Sign : chr [1:357725] NA NA NA NA ...
+#> $ VSS : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ TKN_Sign : chr [1:357725] NA NA NA NA ...
+#> $ TKN : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ Secchi_estimated : logi [1:357725] NA NA NA NA NA NA ...
+#> $ Sample_depth_surface : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ Sample_depth_bottom : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ Salinity_bottom : num [1:357725] 0.989 0.582 0.117 0.119 0.13 ...
+#> $ Sample_depth_nutr_surface : num [1:357725] NA NA NA NA NA NA NA NA NA NA ...
+#> $ MonthYear : POSIXct[1:357725], format: "1997-05-01" "1997-05-01" ...
+#> $ Year : num [1:357725] 1997 1997 1997 1997 1997 ...
+#> $ StationID : chr [1:357725] "20mm 504" "20mm 519" "20mm 809" "20mm 901" ...
+#> $ Month : num [1:357725] 5 5 5 5 5 5 5 5 5 5 ...
+#> $ Season : chr [1:357725] "Spring" "Spring" "Spring" "Spring" ...
```
## Data publication
@@ -162,7 +163,7 @@ CDFW. 2023a. Fall Midwater Trawl data.
CDFW. 2023b. Summer Townet data.
.
-CDWR. 2022. Water Quality Evaluation Section, North Central Region
+CDWR. 2023. Water Quality Evaluation Section, North Central Region
Office.
.
@@ -222,6 +223,10 @@ measurements of water quality in San Francisco Bay (CA), beginning in
2016 (ver. 3.0, March 2020). U. S. Geological Survey data release.
[doi:https://doi.org/10.5066/F7D21WGF](https://doi.org/10.5066/F7D21WGF)
+Schultz, A. A. and A. J. Kalmbach. 2023. Directed Outflow Project Lower
+Trophic Study ver 4. Environmental Data Initiative.
+[doi:10.6073/pasta/86a01140eb3bb756ee9f7f8dab8aefc4](https://portal.edirepository.org/nis/metadataviewer?packageid=edi.1187.4).
+
United States Fish and Wildlife Service, T. Senegal, R. Mckenzie, J.
Speegle, B. Perales, D. Bridgman, K. Erly, S. Staiger, A. Arrambide, and
M. Gilbert. 2022. Interagency Ecological Program and US Fish and
diff --git a/data-raw/DOP.R b/data-raw/DOP.R
new file mode 100644
index 0000000..27ad13a
--- /dev/null
+++ b/data-raw/DOP.R
@@ -0,0 +1,91 @@
+# Code to prepare DOP data goes here
+require(readr)
+require(dplyr)
+require(lubridate)
+require(conflicted)
+
+# Declare package conflict preferences
+conflicts_prefer(dplyr::filter())
+
+# read in dataset
+download.file(
+ "https://portal.edirepository.org/nis/dataviewer?packageid=edi.1187.4&entityid=0dbed7163901c12df414da0762d28a86",
+ file.path(tempdir(), "DOP_ICF_TowData_2017-2022.csv"),
+ mode = "wb",
+ method = "libcurl"
+)
+
+DOP_orig <- read_csv(
+ file.path(tempdir(), "DOP_ICF_TowData_2017-2022.csv"),
+ col_types = cols_only(
+ Date = "c",
+ Latitude = "d",
+ Longitude = "d",
+ Station_Code = "c",
+ Habitat = "c",
+ Conductivity = "d",
+ Temperature = "d",
+ Secchi = "d",
+ Start_Time = "c",
+ pH = "d",
+ Chl_a = "d",
+ Start_Depth = "d",
+ Salinity = "d",
+ Turbidity = "d",
+ DO = "d"
+ )
+)
+
+# Clean up data
+# Note - We're not including Microcystis because they use a different method
+DOP <- DOP_orig %>%
+ transmute(
+ Source = "DOP",
+ # Combine Station_Code and Habitat columns to make the Station column to
+ # preserve habitat info for each station
+ Station = paste(Station_Code, Habitat),
+ Habitat,
+ Latitude,
+ Longitude,
+ Field_coords = TRUE,
+ Date = ymd(Date, tz = "America/Los_Angeles"),
+ # Make a date-time column
+ Datetime = ymd_hms(if_else(is.na(Start_Time), NA_character_, paste(Date, Start_Time)), tz = "America/Los_Angeles"),
+ # Convert feet to meters
+ Depth = Start_Depth * 0.3048,
+ Secchi,
+ Temperature,
+ Salinity,
+ Conductivity,
+ DissolvedOxygen = DO,
+ pH,
+ # Turbidity is measured with a YSI EXO2 sonde according to the DOP methods - units are FNU
+ TurbidityFNU = Turbidity,
+ Chlorophyll = Chl_a
+ ) %>%
+ # Remove Channel Deep and Oblique samples. Channel Deep measurements are taken
+ # at the bottom third to half of the water column and therefore aren't
+ # comparable to bottom samples from other surveys. The WQ measurements for the
+ # Oblique tows are either all NA or they are identical to either the Channel
+ # Surface or Channel Deep samples collected at the same location.
+ filter(!Habitat %in% c("Channel Deep", "Oblique")) %>%
+ select(-Habitat) %>%
+ # Remove replicate tows with identical WQ values - select earliest Datetime
+ arrange(Datetime) %>%
+ distinct(
+ Station,
+ Date,
+ Secchi,
+ Temperature,
+ Salinity,
+ Conductivity,
+ DissolvedOxygen,
+ pH,
+ TurbidityFNU,
+ Chlorophyll,
+ .keep_all = TRUE
+ ) %>%
+ arrange(Date, Station)
+
+usethis::use_data(DOP, overwrite = TRUE)
+
diff --git a/data-raw/NCRO.R b/data-raw/NCRO.R
index 42ec749..766ae4f 100644
--- a/data-raw/NCRO.R
+++ b/data-raw/NCRO.R
@@ -6,20 +6,48 @@ require(tidyr)
require(lubridate)
require(stringr)
require(purrr)
+require(conflicted)
+
+# Declare package conflict preferences
+conflicts_prefer(dplyr::filter())
+
+# Define file path to data-raw/NCRO folder
+fp_ncro_data <- "data-raw/NCRO"
+
+# Create vectors of file paths of Excel and csv files within data-raw/NCRO folder
+fp_ncro_xlsx <- dir(fp_ncro_data, pattern = "\\.xlsx$", full.names = TRUE)
+fp_ncro_csv <- dir(fp_ncro_data, pattern = "\\.csv$", full.names = TRUE)
# Import data field and laboratory provided by NCRO-WQES
+# Data from Excel files:
+NCRO_all_xlsx <-
+ map(str_subset(fp_ncro_xlsx, "/(WQDiscrete|WQES)"), read_excel) %>%
+ map(~ mutate(.x, `Collection Date` = as.character(`Collection Date`))) %>%
+ list_rbind()
+
+# Data from csv files
+NCRO_all_csv <-
+ c(str_subset(fp_ncro_csv, "/(WQDiscrete|LIS_|extra_field)")) %>%
+ set_names(~ str_sub(.x, start = 15)) %>%
+ map(~ read_csv(.x, col_types = cols(.default = "c")))
+
+# Combine field and laboratory data
NCRO_all <-
- map(
- dir("data-raw/NCRO", pattern = "^WQES.+\\.xlsx", full.names = TRUE),
- read_excel
+ list(
+ NCRO_all_xlsx,
+ NCRO_all_csv$WQDiscrete_NorthDelta_RockSlough_FranksTract_YoloBypass_CY2022.csv
) %>%
- list_rbind()
+ map(~ rename_with(.x, ~ str_remove_all(., " "))) %>%
+ bind_rows(
+ NCRO_all_csv$LIS_2019_2021.csv,
+ NCRO_all_csv$extra_field_data_cnra.csv
+ )
# Import Secchi depth and Microcystis data, which were in a different Excel file
-NCRO_secchi_mvi <- read_excel("data-raw/NCRO/All WQES Station HAB Obs and Secchi 2017-2021.xlsx")
+NCRO_secchi_mvi <- read_excel(str_subset(fp_ncro_xlsx, "qry_HabObs"))
# Import station metadata and coordinates
-stations <- read_csv("data-raw/NCRO/Stations.csv")
+stations <- read_csv(str_subset(fp_ncro_csv, "/Stations"))
# Import station coordinates from CNRA Data Portal to fill in missing coordinates
stations_cnra <- read_csv("https://data.cnra.ca.gov/dataset/3f96977e-2597-4baa-8c9b-c433cea0685e/resource/24fc759a-ff0b-479a-a72a-c91a9384540f/download/stations.csv")
@@ -100,8 +128,7 @@ secHABs <- NCRO_secchi_mvi %>%
left_join(stations_f, by = join_by(StationCode == WQES_StationCode)) %>%
select(StationNumber, StationName, Date, Secchi, Microcystis) %>%
# Remove Stations and Dates that are NA and records without Secchi and Microcystis values
- drop_na(StationName) %>%
- drop_na(Date) %>%
+ drop_na(StationName, Date) %>%
filter(!if_all(c(Secchi, Microcystis), is.na)) %>%
# Remove a few duplicated records
distinct()
@@ -111,32 +138,35 @@ NCRO_all_c1 <- NCRO_all %>%
# Only include Normal Samples and analytes listed in the analytes table.
# Remove stations with no station name or number.
filter(
- `Sample Type` == "Normal Sample",
+ SampleType == "Normal Sample",
Analyte %in% analytes$Analyte,
- !str_detect(`Long Station Name`, "^\\(")
+ !str_detect(LongStationName, "^\\(")
) %>%
# Add standardized analyte abbreviations
left_join(analytes, by = join_by(Analyte)) %>%
transmute(
- StationName = `Long Station Name`,
- StationNumber = `Station Number`,
- SampleCode = `Sample Code`,
+ StationName = LongStationName,
+ StationNumber,
+ SampleCode,
# Since NCRO records only in PST, convert to local time to correspond with the other surveys
- Datetime = with_tz(mdy_hm(`Collection Date`, tz = "Etc/GMT+8"), tzone = "America/Los_Angeles"),
+ Datetime = with_tz(
+ parse_date_time(CollectionDate, c("mdY HM", "Ymd HMS"), tz = "Etc/GMT+8"),
+ tzone = "America/Los_Angeles"
+ ),
Date = date(Datetime),
Analyte = AnalyteStd,
Result,
# add Sign variable which indicates %
# convert Result to numeric making %
# Define Turbidity measurement methods - NTU vs FNU
NCRO_all_c3 <- NCRO_all_c2 %>%
- left_join(stations_f %>% select(StationNumber, contains("Date")), by = join_by(StationNumber)) %>%
+ left_join(
+ stations_f %>% select(StationNumber, contains("Date")),
+ by = join_by(StationNumber)
+ ) %>%
mutate(
Analyte = case_when(
Analyte == "Turbidity" & Date <= LastDate_NTU ~ "TurbidityNTU",
@@ -198,25 +231,24 @@ NCRO_all_c3 <- NCRO_all_c2 %>%
# Pull out duplicate records - more than 1 sample collected at a station and same DateTime
NCRO_dt_dups <- NCRO_all_c3 %>%
- count(StationName, Datetime, Analyte) %>%
+ group_by(StationName, Datetime, Analyte) %>%
+ mutate(n = n()) %>%
+ ungroup() %>%
filter(n > 1) %>%
- select(-n) %>%
- left_join(NCRO_all_c3, by = join_by(StationName, Datetime, Analyte))
+ select(-n)
# Clean up duplicate records
NCRO_dt_dups_c <- NCRO_dt_dups %>%
# remove records that have "duplicate" in their Notes
filter(!str_detect(Notes, regex("duplicate", ignore_case = TRUE)) | is.na(Notes)) %>%
- # Clean up the remaining duplicates by keeping only the first sample of the pair
- group_by(StationName, Datetime, Analyte) %>%
- mutate(RepNum = row_number()) %>%
- ungroup() %>%
- filter(RepNum == 1) %>%
- select(-RepNum)
+ # Clean up the remaining duplicates by keeping only the first sample of the
+ # pair sorted by SampleCode
+ arrange(SampleCode) %>%
+ distinct(StationName, Datetime, Analyte, .keep_all = TRUE)
# Add the data frame with the cleaned up duplicates back to the main data frame
NCRO_all_c4 <- NCRO_all_c3 %>%
- anti_join(NCRO_dt_dups) %>%
+ anti_join(NCRO_dt_dups, by = join_by(StationName, Datetime, Analyte)) %>%
bind_rows(NCRO_dt_dups_c)
# There are some instances where samples were collected on the same day at a
@@ -224,7 +256,7 @@ NCRO_all_c4 <- NCRO_all_c3 %>%
# removing the samples not collected by NCRO-WQES identified by Tyler Salman.
# NOTE: There are probably other samples in the data set not collected by
# NCRO-WQES, but these will be too difficult to remove at this point.
-same_date_dups_rm <- read_csv("data-raw/NCRO/duplicates_same_date.csv") %>%
+same_date_dups_rm <- read_csv(str_subset(fp_ncro_csv, "/duplicates_")) %>%
filter(KeepRecord == "no") %>%
distinct(SampleCode) %>%
pull(SampleCode)
@@ -247,7 +279,7 @@ NCRO_all_c6 <- NCRO_all_c5 %>%
# There are some questionable WQ measurement values based on gross ranges of
# each parameter. NCRO-WQES staff checked and corrected/verified these values
# from their field sheet records.
-corr_wq_meas <- read_csv("data-raw/NCRO/ncro_questionable_wq_meas_Verified.csv") %>%
+corr_wq_meas <- read_csv(str_subset(fp_ncro_csv, "/ncro_questionable")) %>%
select(
SampleCode,
Analyte,
@@ -273,10 +305,7 @@ NCRO_corr_wq_meas <- NCRO_all_c7 %>%
drop_na(Result)
NCRO_all_c8 <- NCRO_all_c7 %>%
- anti_join(
- corr_wq_meas %>% select(SampleCode, Analyte),
- by = join_by(SampleCode, Analyte)
- ) %>%
+ anti_join(corr_wq_meas, by = join_by(SampleCode, Analyte)) %>%
bind_rows(NCRO_corr_wq_meas)
# Pivot data wider by Result and Sign variables
diff --git a/data-raw/NCRO/All WQES Station HAB Obs and Secchi 2017-2021.xlsx b/data-raw/NCRO/All WQES Station HAB Obs and Secchi 2017-2021.xlsx
deleted file mode 100644
index 8966a8d..0000000
Binary files a/data-raw/NCRO/All WQES Station HAB Obs and Secchi 2017-2021.xlsx and /dev/null differ
diff --git a/data-raw/NCRO/LIS_2019_2021.csv b/data-raw/NCRO/LIS_2019_2021.csv
new file mode 100644
index 0000000..d1d4510
--- /dev/null
+++ b/data-raw/NCRO/LIS_2019_2021.csv
@@ -0,0 +1,200 @@
+DataOwner,DataStatus,LongStationName,ShortStationName,StationNumber,SampleCode,CollectionDate,Analyte,CASReg_Number,Result,RptLimit,Units,Method,Depth,Matrix,SampleType,ParentSample,Description,Notes,ResultRejected
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0661,7/9/2019 7:37,Chlorophyll a,479-61-8,4.58,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0662,7/9/2019 7:37,Chlorophyll a,479-61-8,7.12,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0663,7/9/2019 7:37,Chlorophyll a,479-61-8,4.01,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0663,7/9/2019 7:37,Pheophytin a,0,7.95,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0662,7/9/2019 7:37,Pheophytin a,0,4.46,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0661,7/9/2019 7:37,Pheophytin a,0,9.13,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0662,7/9/2019 7:37,Field Specific Conductance,0,756.9,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0663,7/9/2019 7:37,Field Specific Conductance,0,756.9,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0661,7/9/2019 7:37,Field Specific Conductance,0,756.9,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0663,7/9/2019 7:37,Field Dissolved Oxygen,0,6.49,0.1,mg/L,EPA 360.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0662,7/9/2019 7:37,Field Dissolved Oxygen,0,6.49,0.1,mg/L,EPA 360.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0661,7/9/2019 7:37,Field Dissolved Oxygen,0,6.49,0.1,mg/L,EPA 360.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0663,7/9/2019 7:37,Field pH,0,8.02,0.1,pH Units,EPA 150.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0661,7/9/2019 7:37,Field pH,0,8.02,0.1,pH Units,EPA 150.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0662,7/9/2019 7:37,Field pH,0,8.02,0.1,pH Units,EPA 150.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0662,7/9/2019 7:37,Field Water Temperature,0,22.1,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0661,7/9/2019 7:37,Field Water Temperature,0,22.1,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0663,7/9/2019 7:37,Field Water Temperature,0,22.1,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0661,7/9/2019 7:37,Field Turbidity,0,52.07,0.1,N.T.U.,EPA 180.1 (Field) [D-2]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0662,7/9/2019 7:37,Field Turbidity,0,52.07,0.1,N.T.U.,EPA 180.1 (Field) [D-2]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0719B0663,7/9/2019 7:37,Field Turbidity,0,52.07,0.1,N.T.U.,EPA 180.1 (Field) [D-2]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0804,8/20/2019 7:35,Chlorophyll a,479-61-8,17.6,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0806,8/20/2019 7:35,Chlorophyll a,479-61-8,13,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0805,8/20/2019 7:35,Chlorophyll a,479-61-8,8.11,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0804,8/20/2019 7:35,Pheophytin a,0,9.06,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0805,8/20/2019 7:35,Pheophytin a,0,3.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0806,8/20/2019 7:35,Pheophytin a,0,6.3,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0804,8/20/2019 7:35,Field Specific Conductance,0,480.7,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0805,8/20/2019 7:35,Field Specific Conductance,0,480.7,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0806,8/20/2019 7:35,Field Specific Conductance,0,480.7,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0806,8/20/2019 7:35,Field Dissolved Oxygen,0,6.46,0.1,mg/L,EPA 360.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0804,8/20/2019 7:35,Field Dissolved Oxygen,0,6.46,0.1,mg/L,EPA 360.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0805,8/20/2019 7:35,Field Dissolved Oxygen,0,6.46,0.1,mg/L,EPA 360.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0806,8/20/2019 7:35,Field pH,0,7.9,0.1,pH Units,EPA 150.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0804,8/20/2019 7:35,Field pH,0,7.9,0.1,pH Units,EPA 150.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0805,8/20/2019 7:35,Field pH,0,7.9,0.1,pH Units,EPA 150.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0805,8/20/2019 7:35,Field Water Temperature,0,23.21,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0806,8/20/2019 7:35,Field Water Temperature,0,23.21,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0804,8/20/2019 7:35,Field Water Temperature,0,23.21,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0804,8/20/2019 7:35,Field Turbidity,0,52.81,0.1,N.T.U.,EPA 180.1 (Field) [D-2]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0806,8/20/2019 7:35,Field Turbidity,0,52.81,0.1,N.T.U.,EPA 180.1 (Field) [D-2]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"1000 - Non-Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0819B0805,8/20/2019 7:35,Field Turbidity,0,52.81,0.1,N.T.U.,EPA 180.1 (Field) [D-2]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0176,3/15/2021 10:23,Chlorophyll a,479-61-8,14.74,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0177,3/15/2021 10:23,Chlorophyll a,479-61-8,14.55,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0321B0176,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0177,3/15/2021 10:23,Dissolved Organic Carbon,7440-44-0,7.3,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0321B0176,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0176,3/15/2021 10:23,Dissolved Organic Carbon,7440-44-0,7.2,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0177,3/15/2021 10:23,Total Organic Carbon,7440-44-0,7.5,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0321B0176,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0176,3/15/2021 10:23,Total Organic Carbon,7440-44-0,7.2,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0176,3/15/2021 10:23,Pheophytin a,0,2.79,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0177,3/15/2021 10:23,Pheophytin a,0,3.26,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0321B0176,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0177,3/15/2021 10:23,Total Suspended Solids,0,30,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0321B0176,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0176,3/15/2021 10:23,Total Suspended Solids,0,32.3,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0176,3/15/2021 10:23,Field Specific Conductance,0,925,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0176,3/15/2021 10:23,Field Dissolved Oxygen,0,8.44,0.1,mg/L,ASTM Method D888-09-C (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0176,3/15/2021 10:23,Field pH,0,8.07,0.1,pH Units,SM 4500-H B-2000 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0176,3/15/2021 10:23,Field Water Temperature,0,12.16,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0321B0176,3/15/2021 10:23,Field Turbidity,0,20.85,0.1,F.N.U.,"Turbidity, Sonde [D-2]*",1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0270,4/13/2021 9:45,Chlorophyll a,479-61-8,6.75,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0271,4/13/2021 9:45,Chlorophyll a,479-61-8,2.86,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0421B0270,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0271,4/13/2021 9:45,Dissolved Organic Carbon,7440-44-0,5.8,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0421B0270,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0270,4/13/2021 9:45,Dissolved Organic Carbon,7440-44-0,5.6,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0270,4/13/2021 9:45,Total Organic Carbon,7440-44-0,5.7,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0271,4/13/2021 9:45,Total Organic Carbon,7440-44-0,5.5,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0421B0270,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0270,4/13/2021 9:45,Pheophytin a,0,2.98,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0271,4/13/2021 9:45,Pheophytin a,0,1.1,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0421B0270,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0270,4/13/2021 9:45,Total Suspended Solids,0,21.4,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0271,4/13/2021 9:45,Total Suspended Solids,0,22.4,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0421B0270,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0270,4/13/2021 9:45,Field Specific Conductance,0,803,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0270,4/13/2021 9:45,Field Dissolved Oxygen,0,7.44,0.1,mg/L,ASTM Method D888-09-C (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0270,4/13/2021 9:45,Field pH,0,7.92,0.1,pH Units,SM 4500-H B-2000 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0270,4/13/2021 9:45,Field Water Temperature,0,17.174,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0421B0270,4/13/2021 9:45,Field Turbidity,0,16.17,0.1,F.N.U.,"Turbidity, Sonde [D-2]*",1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0384,5/3/2021 11:00,Chlorophyll a,479-61-8,2.44,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0521B0383,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Chlorophyll a,479-61-8,2.99,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Dissolved Organic Carbon,7440-44-0,4.8,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0384,5/3/2021 11:00,Dissolved Organic Carbon,7440-44-0,4.4,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0521B0383,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Dissolved Organic Carbon,7440-44-0,4.5,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Total Organic Carbon,7440-44-0,4.3,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0384,5/3/2021 11:00,Total Organic Carbon,7440-44-0,4.3,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0521B0383,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Total Organic Carbon,7440-44-0,4.5,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Pheophytin a,0,1.14,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0384,5/3/2021 11:00,Pheophytin a,0,0.88,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0521B0383,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Total Suspended Solids,0,16.5,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0384,5/3/2021 11:00,Total Suspended Solids,0,14.4,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0521B0383,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Field Specific Conductance,0,578.3,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Field Dissolved Oxygen,0,5.78,0.1,mg/L,ASTM Method D888-09-C (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Field pH,0,7.82,0.1,pH Units,SM 4500-H B-2000 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Field Water Temperature,0,19.005,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0521B0383,5/3/2021 11:00,Field Turbidity,0,11.79,0.1,F.N.U.,"Turbidity, Sonde [D-2]*",1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0493,6/2/2021 9:45,Chlorophyll a,479-61-8,5.9,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0494,6/2/2021 9:45,Chlorophyll a,479-61-8,6.22,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0621B0493,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0494,6/2/2021 9:45,Dissolved Organic Carbon,7440-44-0,3,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0621B0493,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0493,6/2/2021 9:45,Dissolved Organic Carbon,7440-44-0,3,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0493,6/2/2021 9:45,Total Organic Carbon,7440-44-0,2.9,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0494,6/2/2021 9:45,Total Organic Carbon,7440-44-0,3,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0621B0493,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0493,6/2/2021 9:45,Pheophytin a,0,0.97,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0494,6/2/2021 9:45,Pheophytin a,0,0.75,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0621B0493,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0493,6/2/2021 9:45,Total Suspended Solids,0,31.2,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0494,6/2/2021 9:45,Total Suspended Solids,0,29.5,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0621B0493,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0493,6/2/2021 9:45,Total Suspended Solids,0,30.2,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0493,6/2/2021 9:45,Field Specific Conductance,0,313.3,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0493,6/2/2021 9:45,Field Dissolved Oxygen,0,6.91,0.1,mg/L,ASTM Method D888-09-C (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0493,6/2/2021 9:45,Field pH,0,8,0.1,pH Units,SM 4500-H B-2000 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0493,6/2/2021 9:45,Field Water Temperature,0,23.002,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0621B0493,6/2/2021 9:45,Field Turbidity,0,29.18,0.1,F.N.U.,"Turbidity, Sonde [D-2]*",1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0611,7/15/2021 8:00,Chlorophyll a,479-61-8,3.19,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0721B0610,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0610,7/15/2021 8:00,Chlorophyll a,479-61-8,2.89,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0610,7/15/2021 8:00,Dissolved Organic Carbon,7440-44-0,3.6,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0611,7/15/2021 8:00,Dissolved Organic Carbon,7440-44-0,3.7,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0721B0610,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0611,7/15/2021 8:00,Total Organic Carbon,7440-44-0,3.6,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0721B0610,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0610,7/15/2021 8:00,Total Organic Carbon,7440-44-0,3.6,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0610,7/15/2021 8:00,Pheophytin a,0,1.09,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0611,7/15/2021 8:00,Pheophytin a,0,0.82,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0721B0610,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0610,7/15/2021 8:00,Total Suspended Solids,0,34,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0611,7/15/2021 8:00,Total Suspended Solids,0,33.1,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0721B0610,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0610,7/15/2021 8:00,Field Specific Conductance,0,312.9,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0610,7/15/2021 8:00,Field Dissolved Oxygen,0,7.26,0.1,mg/L,ASTM Method D888-09-C (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0610,7/15/2021 8:00,Field pH,0,8.03,0.1,pH Units,SM 4500-H B-2000 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0610,7/15/2021 8:00,Field Water Temperature,0,22.324,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0721B0610,7/15/2021 8:00,Field Turbidity,0,24.02,0.1,F.N.U.,"Turbidity, Sonde [D-2]*",1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0708,8/17/2021 7:45,Chlorophyll a,479-61-8,3.03,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0709,8/17/2021 7:45,Chlorophyll a,479-61-8,2.96,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0821B0708,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0708,8/17/2021 7:45,Dissolved Organic Carbon,7440-44-0,3,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0709,8/17/2021 7:45,Dissolved Organic Carbon,7440-44-0,3,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0821B0708,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0709,8/17/2021 7:45,Total Organic Carbon,7440-44-0,3,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0821B0708,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0708,8/17/2021 7:45,Total Organic Carbon,7440-44-0,2.9,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0709,8/17/2021 7:45,Pheophytin a,0,0.78,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0821B0708,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0708,8/17/2021 7:45,Pheophytin a,0,0.91,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0709,8/17/2021 7:45,Total Suspended Solids,0,25.5,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0821B0708,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0708,8/17/2021 7:45,Total Suspended Solids,0,24.1,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0708,8/17/2021 7:45,Field Specific Conductance,0,296.5,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0708,8/17/2021 7:45,Field Dissolved Oxygen,0,6.86,0.1,mg/L,ASTM Method D888-09-C (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0708,8/17/2021 7:45,Field pH,0,7.76,0.1,pH Units,SM 4500-H B-2000 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0708,8/17/2021 7:45,Field Water Temperature,0,23.606,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0821B0708,8/17/2021 7:45,Field Turbidity,0,20.23,0.1,F.N.U.,"Turbidity, Sonde [D-2]*",1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0785,9/14/2021 9:00,Chlorophyll a,479-61-8,1.15,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0921B0784,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0784,9/14/2021 9:00,Chlorophyll a,479-61-8,2.89,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0784,9/14/2021 9:00,Dissolved Organic Carbon,7440-44-0,3.6,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0785,9/14/2021 9:00,Dissolved Organic Carbon,7440-44-0,3.7,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0921B0784,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0785,9/14/2021 9:00,Total Organic Carbon,7440-44-0,3.6,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0921B0784,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0784,9/14/2021 9:00,Total Organic Carbon,7440-44-0,3.6,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0785,9/14/2021 9:00,Pheophytin a,0,3.66,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0921B0784,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0784,9/14/2021 9:00,Pheophytin a,0,1.19,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0785,9/14/2021 9:00,Total Suspended Solids,0,20.8,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF0921B0784,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0784,9/14/2021 9:00,Total Suspended Solids,0,21.2,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0784,9/14/2021 9:00,Field Specific Conductance,0,439.4,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0784,9/14/2021 9:00,Field Dissolved Oxygen,0,5.08,0.1,mg/L,ASTM Method D888-09-C (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0784,9/14/2021 9:00,Field pH,0,7.35,0.1,pH Units,SM 4500-H B-2000 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0784,9/14/2021 9:00,Field Water Temperature,0,23.604,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0921B0784,9/14/2021 9:00,Field Turbidity,0,14.75,0.1,F.N.U.,"Turbidity, Sonde [D-2]*",1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0848,10/4/2021 9:35,Chlorophyll a,479-61-8,5.61,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0849,10/4/2021 9:35,Chlorophyll a,479-61-8,5.86,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1021B0848,"CF1021B0849, LIS, 10/04/2021, Pheophytin - Parent: 3.8, Dup: 1.23, RPD: -102.2%",,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0849,10/4/2021 9:35,Dissolved Organic Carbon,7440-44-0,2.7,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1021B0848,"CF1021B0849, LIS, 10/04/2021, Pheophytin - Parent: 3.8, Dup: 1.23, RPD: -102.2%",,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0848,10/4/2021 9:35,Dissolved Organic Carbon,7440-44-0,2.7,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0848,10/4/2021 9:35,Total Organic Carbon,7440-44-0,2.6,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0849,10/4/2021 9:35,Total Organic Carbon,7440-44-0,2.7,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1021B0848,"CF1021B0849, LIS, 10/04/2021, Pheophytin - Parent: 3.8, Dup: 1.23, RPD: -102.2%",,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0849,10/4/2021 9:35,Pheophytin a,0,1.23,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1021B0848,"CF1021B0849, LIS, 10/04/2021, Pheophytin - Parent: 3.8, Dup: 1.23, RPD: -102.2%",,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0848,10/4/2021 9:35,Pheophytin a,0,3.8,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0848,10/4/2021 9:35,Total Suspended Solids,0,28.9,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0849,10/4/2021 9:35,Total Suspended Solids,0,30,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1021B0848,"CF1021B0849, LIS, 10/04/2021, Pheophytin - Parent: 3.8, Dup: 1.23, RPD: -102.2%",,N
+6301,"3000 - Public, Review Status Unknown",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0849,10/4/2021 9:35,Total Suspended Solids,0,28.3,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1021B0848,"CF1021B0849, LIS, 10/04/2021, Pheophytin - Parent: 3.8, Dup: 1.23, RPD: -102.2%",,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0848,10/4/2021 9:35,Field Specific Conductance,0,272.3,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0848,10/4/2021 9:35,Field Dissolved Oxygen,0,6.88,0.1,mg/L,ASTM Method D888-09-C (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0848,10/4/2021 9:35,Field pH,0,7.8,0.1,pH Units,SM 4500-H B-2000 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0848,10/4/2021 9:35,Field Water Temperature,0,19.709,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0848,10/4/2021 9:35,Field Turbidity,0,28.52,0.1,F.N.U.,"Turbidity, Sonde [D-2]*",1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0929,10/26/2021 12:03,Chlorophyll a,479-61-8,5.82,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1021B0928,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0928,10/26/2021 12:03,Chlorophyll a,479-61-8,5.13,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0928,10/26/2021 12:03,Dissolved Organic Carbon,7440-44-0,7.7,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0929,10/26/2021 12:03,Dissolved Organic Carbon,7440-44-0,7.8,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1021B0928,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0928,10/26/2021 12:03,Total Organic Carbon,7440-44-0,7.8,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0929,10/26/2021 12:03,Total Organic Carbon,7440-44-0,7.6,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1021B0928,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0929,10/26/2021 12:03,Pheophytin a,0,3.61,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1021B0928,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0928,10/26/2021 12:03,Pheophytin a,0,4.03,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0928,10/26/2021 12:03,Total Suspended Solids,0,91.3,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0929,10/26/2021 12:03,Total Suspended Solids,0,109,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1021B0928,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0928,10/26/2021 12:03,Field Specific Conductance,0,466,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0928,10/26/2021 12:03,Field Dissolved Oxygen,0,2.72,0.1,mg/L,ASTM Method D888-09-C (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0928,10/26/2021 12:03,Field pH,0,7.19,0.1,pH Units,SM 4500-H B-2000 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0928,10/26/2021 12:03,Field Water Temperature,0,15.145,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1021B0928,10/26/2021 12:03,Field Turbidity,0,86.29,0.1,F.N.U.,"Turbidity, Sonde [D-2]*",1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1085,12/6/2021 11:10,Chlorophyll a,479-61-8,3.92,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1086,12/6/2021 11:10,Chlorophyll a,479-61-8,5.05,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1221B1085,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1086,12/6/2021 11:10,Dissolved Organic Carbon,7440-44-0,9.9,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1221B1085,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1085,12/6/2021 11:10,Dissolved Organic Carbon,7440-44-0,9.7,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1085,12/6/2021 11:10,Total Organic Carbon,7440-44-0,9.6,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1086,12/6/2021 11:10,Total Organic Carbon,7440-44-0,9.6,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1221B1085,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1086,12/6/2021 11:10,Pheophytin a,0,1.97,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1221B1085,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1085,12/6/2021 11:10,Pheophytin a,0,3.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1085,12/6/2021 11:10,Total Suspended Solids,0,16.4,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1086,12/6/2021 11:10,Total Suspended Solids,0,17.1,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Duplicate Sample,CF1221B1085,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1085,12/6/2021 11:10,Field Specific Conductance,0,758.9,1,uS/cm@25 °C,EPA 120.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1085,12/6/2021 11:10,Field Dissolved Oxygen,0,4.53,0.1,mg/L,ASTM Method D888-09-C (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1085,12/6/2021 11:10,Field pH,0,7.42,0.1,pH Units,SM 4500-H B-2000 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1085,12/6/2021 11:10,Field Water Temperature,0,11.786,0.1,°C,EPA 170.1 (Field) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,-
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1221B1085,12/6/2021 11:10,Field Turbidity,0,16.19,0.1,F.N.U.,"Turbidity, Sonde [D-2]*",1 Meters,"Water, Natural",Normal Sample,0,,,-
+"
+",,,,,,,,,,,,,,,,,,,
+"*Codes in brackets ([]) following the analyte name refer to the Method Comparibility Code. For more information, please refer to https://cdowr-dev.outsystemsenterprise.com/WaterDataLibrary/MTCCodes.aspx.",,,,,,,,,,,,,,,,,,,
diff --git a/data-raw/NCRO/Stations.csv b/data-raw/NCRO/Stations.csv
index 4298c9c..add63f0 100644
--- a/data-raw/NCRO/Stations.csv
+++ b/data-raw/NCRO/Stations.csv
@@ -4,18 +4,19 @@ B9591000,Contra Costa PP Number 01,37.976192,-121.639803,,,
B9D74911256,Doughty Cut near Grantline Canal,37.814722,-121.425222,DGL,1/5/2017,2/1/2017
B9D80331400,False River near Oakley,38.055469,-121.667129,FAL,3/8/2017,4/12/2017
B9D80411389,Fisherman's Cut,38.065612,-121.647933,FCT,3/8/2017,4/12/2017
+B9D80281359,Frank's Tract Mid Track - D19A,38.04642,-121.5981,FRK,,5/12/2022
B9D74921261,Grant Line Canal East,37.82025,-121.434861,GLE,1/5/2017,2/1/2017
B9D72921327,Grant Line Canal near Old River,37.820128,-121.544661,GLC,1/26/2017,3/9/2017
B9D74921269,Grant Ln Can @ Tracy Rd Bdg,37.820111,-121.449833,GCT,5/3/2017,6/7/2017
B9D74921510,Grantline Canal above Dam,37.82016111,-121.447425,,8/27/2013,
B9D75841349,Holland Cut at Holland Marina,,,HCHM,,9/10/2019
B9D80101349,Holland Cut near Bethel Island,38.015821,-121.582124,HOL,3/29/2017,4/20/2017
+B9D75291273,Middle R @ Tracy Rd Bdg,,,,,
B9D75351292,Middle River @ Union Point - P10A,37.890778,-121.488361,MUP,3/3/2017,4/4/2017
B9D75261230,Middle River at Howard Road,37.876184,-121.383288,MHO,5/2/2017,5/26/2017
B9D75011230,Middle River at Undine Road,37.8339408,-121.3857561,MRU,5/2/2017,5/11/2017
B9D80021306,Middle River near Holt,38.003081,-121.510933,HLT,3/29/2017,4/20/2017
B9D75291280,Middle River near Tracy Road,37.881425,-121.467399,MRX,5/2/2017,5/16/2017
-B9D75291273,Middle R @ Tracy Rd Bdg,,,,,
B9S81421400,Miner Slough near Sacramento River,38.2360319,-121.6660681,MIR,1/25/2017,3/2/2017
B9204500,Mokelumne River near Highway 12,38.108177,-121.576441,MOK,3/8/2017,4/12/2017
B9D74831270,Old River @ Tracy Road Bridge - P12,,,,1/22/2015,
@@ -46,3 +47,4 @@ B9D75961273,"Turner Cut near Holt, CA",37.992533,-121.454032,TRN,3/29/2017,4/20/
B9D75231318,Victoria Canal near Byron,37.870944,-121.53,VCU,1/26/2017,3/9/2017
B9D75781357,Werner Dredger Cut near Palm Tract,37.963996,-121.59485,WDC,,9/10/2019
B9D74991332,West Canal Above Clifton Court Intake,37.8316051,-121.5540131,WCI,,6/13/2018
+B9D82851352,Yolo Bypass Toe Drain Below Lisbon Weir,38.474608,-121.5885961,LIS,,7/9/2019
diff --git a/data-raw/NCRO/WQDiscrete_CentralDelta_CY2022.xlsx b/data-raw/NCRO/WQDiscrete_CentralDelta_CY2022.xlsx
new file mode 100644
index 0000000..fe66cd9
Binary files /dev/null and b/data-raw/NCRO/WQDiscrete_CentralDelta_CY2022.xlsx differ
diff --git a/data-raw/NCRO/WQDiscrete_NorthDelta_RockSlough_FranksTract_YoloBypass_CY2022.csv b/data-raw/NCRO/WQDiscrete_NorthDelta_RockSlough_FranksTract_YoloBypass_CY2022.csv
new file mode 100644
index 0000000..6dd4bc0
--- /dev/null
+++ b/data-raw/NCRO/WQDiscrete_NorthDelta_RockSlough_FranksTract_YoloBypass_CY2022.csv
@@ -0,0 +1,945 @@
+Data Owner,Data Status,Long Station Name,Short Station Name,Station Number,Sample Code,Collection Date,Analyte,CAS Reg Number,Result,Rpt Limit,Units,Method,Depth,Matrix,Sample Type,Parent Sample,Description,Notes,Result Rejected
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0522B0613,5/12/2022 12:39,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0522B0613,5/12/2022 12:39,Chlorophyll a,479-61-8,2.41,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0522B0613,5/12/2022 12:39,Dissolved Nitrate + Nitrite,NO3+NO2,0.103,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0522B0613,5/12/2022 12:39,Dissolved Organic Nitrogen,ON,0.21,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0522B0613,5/12/2022 12:39,Pheophytin a,0,0.65,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0522B0613,5/12/2022 12:39,Total Kjeldahl Nitrogen,TKN,0.292,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0522B0613,5/12/2022 12:39,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0622B0660,6/7/2022 11:30,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0622B0660,6/7/2022 11:30,Chlorophyll a,479-61-8,1.45,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0622B0660,6/7/2022 11:30,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0622B0660,6/7/2022 11:30,Dissolved Organic Nitrogen,ON,0.18,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0622B0660,6/7/2022 11:30,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0622B0660,6/7/2022 11:30,Total Kjeldahl Nitrogen,TKN,0.262,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0622B0660,6/7/2022 11:30,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0722B0770,7/13/2022 11:14,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0722B0770,7/13/2022 11:14,Chlorophyll a,479-61-8,1.21,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0722B0770,7/13/2022 11:14,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0722B0770,7/13/2022 11:14,Dissolved Organic Nitrogen,ON,0.18,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0722B0770,7/13/2022 11:14,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0722B0770,7/13/2022 11:14,Total Kjeldahl Nitrogen,TKN,0.221,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"1000 - Non-Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0722B0770,7/13/2022 11:14,Dissolved ortho-Phosphate,14265-44-2,0.069,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0822B0876,8/10/2022 14:00,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0822B0876,8/10/2022 14:00,Chlorophyll a,479-61-8,2.27,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0822B0876,8/10/2022 14:00,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0822B0876,8/10/2022 14:00,Dissolved Organic Nitrogen,ON,0.13,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0822B0876,8/10/2022 14:00,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0822B0876,8/10/2022 14:00,Total Kjeldahl Nitrogen,TKN,0.187,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0822B0876,8/10/2022 14:00,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0922B0933,9/8/2022 8:46,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0922B0933,9/8/2022 8:46,Chlorophyll a,479-61-8,1.4,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0922B0933,9/8/2022 8:46,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0922B0933,9/8/2022 8:46,Dissolved Organic Nitrogen,ON,0.17,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0922B0933,9/8/2022 8:46,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0922B0933,9/8/2022 8:46,Total Phosphorus,7723-14-0,0.035,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0922B0933,9/8/2022 8:46,Total Kjeldahl Nitrogen,TKN,0.193,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF0922B0933,9/8/2022 8:46,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF1022B1133,10/13/2022 10:20,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF1022B1133,10/13/2022 10:20,Chlorophyll a,479-61-8,0.87,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF1022B1133,10/13/2022 10:20,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF1022B1133,10/13/2022 10:20,Dissolved Organic Nitrogen,ON,0.12,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF1022B1133,10/13/2022 10:20,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF1022B1133,10/13/2022 10:20,Total Phosphorus,7723-14-0,0.048,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF1022B1133,10/13/2022 10:20,Total Kjeldahl Nitrogen,TKN,0.153,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Frank's Tract Mid Track - D19A,D19A,B9D80281359,CF1022B1133,10/13/2022 10:20,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0122B0231,1/26/2022 11:12,Dissolved Bromide,24959-67-9,0.13,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0122B0231,1/26/2022 11:12,Dissolved Chloride,16887-00-6,40,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0222B0290,2/16/2022 9:50,Dissolved Bromide,24959-67-9,0.12,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0222B0290,2/16/2022 9:50,Dissolved Chloride,16887-00-6,37,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0322B0413,3/23/2022 8:57,Dissolved Bromide,24959-67-9,0.104,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0322B0413,3/23/2022 8:57,Dissolved Chloride,16887-00-6,32,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0422B0513,4/25/2022 10:22,Dissolved Bromide,24959-67-9,0.111,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0422B0513,4/25/2022 10:22,Dissolved Chloride,16887-00-6,35,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0622B0693,6/16/2022 11:52,Dissolved Bromide,24959-67-9,0.249,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0622B0693,6/16/2022 11:52,Dissolved Chloride,16887-00-6,64.3,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0722B0782,7/13/2022 10:01,Dissolved Bromide,24959-67-9,0.399,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0722B0782,7/13/2022 10:01,Dissolved Chloride,16887-00-6,117,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0822B0887,8/16/2022 10:40,Dissolved Bromide,24959-67-9,0.283,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0822B0887,8/16/2022 10:40,Dissolved Chloride,16887-00-6,80.4,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0922B0970,9/20/2022 10:17,Dissolved Bromide,24959-67-9,0.313,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF0922B0970,9/20/2022 10:17,Dissolved Chloride,16887-00-6,91,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF1022B1119,10/13/2022 11:06,Dissolved Bromide,24959-67-9,0.437,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF1022B1119,10/13/2022 11:06,Dissolved Chloride,16887-00-6,129,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF1122B1235,11/22/2022 10:27,Dissolved Bromide,24959-67-9,0.48,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Holland Cut at Holland Marina,HC@HollandMarina,B9D75841349,CF1122B1235,11/22/2022 10:27,Dissolved Chloride,16887-00-6,145,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Dissolved Chloride,16887-00-6,8.94,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Chlorophyll a,479-61-8,0.59,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Dissolved Nitrate + Nitrite,NO3+NO2,0.405,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Dissolved Organic Carbon,7440-44-0,2.4,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Total Organic Carbon,7440-44-0,2.4,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Dissolved Organic Nitrogen,ON,0.14,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Total Phosphorus,7723-14-0,0.043,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Total Kjeldahl Nitrogen,TKN,0.183,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0122B0178,1/13/2022 11:02,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Dissolved Chloride,16887-00-6,6.2,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Chlorophyll a,479-61-8,0.66,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Dissolved Nitrate + Nitrite,NO3+NO2,0.18,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Dissolved Organic Carbon,7440-44-0,2,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Total Organic Carbon,7440-44-0,2,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Dissolved Organic Nitrogen,ON,0.14,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Pheophytin a,0,1.65,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Total Phosphorus,7723-14-0,0.03,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Total Kjeldahl Nitrogen,TKN,0.159,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0222B0305,2/17/2022 11:01,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Dissolved Chloride,16887-00-6,5.1,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Chlorophyll a,479-61-8,1.13,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Dissolved Nitrate + Nitrite,NO3+NO2,0.129,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Dissolved Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Total Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Dissolved Organic Nitrogen,ON,0.14,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Pheophytin a,0,0.53,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Total Phosphorus,7723-14-0,0.037,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Total Kjeldahl Nitrogen,TKN,0.168,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0322B0401,3/17/2022 10:04,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Dissolved Chloride,16887-00-6,6.4,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Chlorophyll a,479-61-8,0.54,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Dissolved Nitrate + Nitrite,NO3+NO2,0.213,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Dissolved Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Total Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Dissolved Organic Nitrogen,ON,0.13,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Total Phosphorus,7723-14-0,0.038,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Total Kjeldahl Nitrogen,TKN,0.169,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0422B0525,4/28/2022 9:19,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Dissolved Chloride,16887-00-6,5.23,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Chlorophyll a,479-61-8,0.92,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Dissolved Nitrate + Nitrite,NO3+NO2,0.185,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Dissolved Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Total Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Dissolved Organic Nitrogen,ON,<0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Pheophytin a,0,0.57,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Total Phosphorus,7723-14-0,0.038,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Total Kjeldahl Nitrogen,TKN,<0.1,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0622B0675,6/10/2022 9:59,Dissolved ortho-Phosphate,14265-44-2,0.107,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Dissolved Chloride,16887-00-6,3.38,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Dissolved Chloride,16887-00-6,3.39,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Chlorophyll a,479-61-8,1.19,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Dissolved Nitrate + Nitrite,NO3+NO2,0.083,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Dissolved Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Total Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Dissolved Organic Nitrogen,ON,<0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Pheophytin a,0,0.53,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Total Phosphorus,7723-14-0,0.029,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Total Kjeldahl Nitrogen,TKN,0.1,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0722B0813,7/28/2022 10:32,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Dissolved Chloride,16887-00-6,5.3,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Chlorophyll a,479-61-8,0.99,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Dissolved Nitrate + Nitrite,NO3+NO2,0.083,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Dissolved Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Total Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Dissolved Organic Nitrogen,ON,0.12,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Pheophytin a,0,0.56,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Total Phosphorus,7723-14-0,0.044,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Total Kjeldahl Nitrogen,TKN,0.172,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0822B0896,8/18/2022 10:42,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Dissolved Chloride,16887-00-6,4.26,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Chlorophyll a,479-61-8,0.73,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Dissolved Nitrate + Nitrite,NO3+NO2,0.112,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Dissolved Organic Carbon,7440-44-0,2,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Total Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Dissolved Organic Nitrogen,ON,<0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Total Phosphorus,7723-14-0,0.033,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Total Kjeldahl Nitrogen,TKN,0.124,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF0922B0975,9/20/2022 10:10,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Dissolved Chloride,16887-00-6,5.04,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Chlorophyll a,479-61-8,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Dissolved Nitrate + Nitrite,NO3+NO2,0.212,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Dissolved Organic Carbon,7440-44-0,2,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Total Organic Carbon,7440-44-0,2,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Dissolved Organic Nitrogen,ON,0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Total Phosphorus,7723-14-0,0.03,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Total Kjeldahl Nitrogen,TKN,0.128,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1022B1162,10/20/2022 9:57,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Dissolved Chloride,16887-00-6,7.76,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Chlorophyll a,479-61-8,0.72,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Dissolved Nitrate + Nitrite,NO3+NO2,0.225,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Dissolved Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Dissolved Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Total Organic Carbon,7440-44-0,2,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Total Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Dissolved Organic Nitrogen,ON,0.14,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Total Phosphorus,7723-14-0,0.065,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Total Kjeldahl Nitrogen,TKN,0.139,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1122B1228,11/17/2022 11:46,Dissolved ortho-Phosphate,14265-44-2,0.074,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Dissolved Chloride,16887-00-6,10.6,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Chlorophyll a,479-61-8,1.45,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Dissolved Nitrate + Nitrite,NO3+NO2,0.662,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Dissolved Organic Carbon,7440-44-0,4,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Total Organic Carbon,7440-44-0,4.1,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Dissolved Organic Nitrogen,ON,0.34,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Pheophytin a,0,1.29,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Total Phosphorus,7723-14-0,0.081,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Total Kjeldahl Nitrogen,TKN,0.424,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Miner Slough near Sacramento River,Miner Slough nr SR,B9S81421400,CF1222B1619,12/20/2022 11:55,Dissolved ortho-Phosphate,14265-44-2,0.061,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Total Alkalinity,471-34-1,73.7,20,mg/L as CaCO3,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Boron,7440-42-8,0.104,0.1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Bromide,24959-67-9,0.16,0.1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Calcium,7440-70-2,17.7,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Chloride,16887-00-6,52,5,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Specific Conductance,0,398,5,uS/cm@25 °C,Std Method 2510-B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Hardness,0,92,1,mg/L as CaCO3,Std Method 2340 B (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Magnesium,7439-95-4,11.5,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Nitrate + Nitrite,NO3+NO2,0.773,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Organic Carbon,7440-44-0,5.6,0.5,mg/L as C,EPA 415.3 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Total Organic Carbon,7440-44-0,5.6,0.5,mg/L as C,EPA 415.3 (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Total Phosphorus,7723-14-0,0.052,0.01,mg/L as P,EPA 365.4 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Potassium,9/7/7440,3.28,0.5,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Sodium,7440-23-5,36.6,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Total Dissolved Solids,0,222,2.5,mg/L,Std Method 2540 C [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved Sulfate,14808-79-8,25,5,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Total Kjeldahl Nitrogen,TKN,0.466,0.1,mg/L as N,EPA 351.2 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0122B0230,1/26/2022 9:58,Dissolved ortho-Phosphate,14265-44-2,0.051,0.05,mg/L as P,EPA 365.1 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Total Alkalinity,471-34-1,77.6,20,mg/L as CaCO3,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Boron,7440-42-8,0.115,0.1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Bromide,24959-67-9,0.124,0.1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Calcium,7440-70-2,19.4,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Chloride,16887-00-6,41,5,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Specific Conductance,0,362,5,uS/cm@25 °C,Std Method 2510-B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Hardness,0,98,1,mg/L as CaCO3,Std Method 2340 B (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Magnesium,7439-95-4,12,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Nitrate + Nitrite,NO3+NO2,0.405,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Organic Carbon,7440-44-0,5.1,0.5,mg/L as C,EPA 415.3 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Organic Carbon,7440-44-0,5.1,0.5,mg/L as C,EPA 415.3 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Total Organic Carbon,7440-44-0,5.2,0.5,mg/L as C,EPA 415.3 (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Total Organic Carbon,7440-44-0,5.3,0.5,mg/L as C,EPA 415.3 (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Total Phosphorus,7723-14-0,0.036,0.01,mg/L as P,EPA 365.4 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Potassium,9/7/7440,2.84,0.5,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Sodium,7440-23-5,33.5,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Total Dissolved Solids,0,200,2.5,mg/L,Std Method 2540 C [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved Sulfate,14808-79-8,25,5,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Total Kjeldahl Nitrogen,TKN,0.447,0.1,mg/L as N,EPA 351.2 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0222B0289,2/16/2022 8:55,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Total Alkalinity,471-34-1,81.5,20,mg/L as CaCO3,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Boron,7440-42-8,0.112,0.1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Bromide,24959-67-9,0.116,0.1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Calcium,7440-70-2,20.5,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Chloride,16887-00-6,39,5,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Specific Conductance,0,362,5,uS/cm@25 °C,Std Method 2510-B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Hardness,0,102,1,mg/L as CaCO3,Std Method 2340 B (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Magnesium,7439-95-4,12.4,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Nitrate + Nitrite,NO3+NO2,0.202,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Organic Carbon,7440-44-0,5.2,0.5,mg/L as C,EPA 415.3 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Total Organic Carbon,7440-44-0,5.3,0.5,mg/L as C,EPA 415.3 (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Total Phosphorus,7723-14-0,0.046,0.01,mg/L as P,EPA 365.4 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Potassium,9/7/7440,2.76,0.5,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Sodium,7440-23-5,33.8,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Total Dissolved Solids,0,200,2.5,mg/L,Std Method 2540 C [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved Sulfate,14808-79-8,25,5,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Total Kjeldahl Nitrogen,TKN,0.378,0.1,mg/L as N,EPA 351.2 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0322B0412,3/23/2022 8:00,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Total Alkalinity,471-34-1,80.3,20,mg/L as CaCO3,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Boron,7440-42-8,0.1,0.1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Bromide,24959-67-9,0.11,0.1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Calcium,7440-70-2,18,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Chloride,16887-00-6,35,5,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Specific Conductance,0,329,5,uS/cm@25 °C,Std Method 2510-B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Hardness,0,91,1,mg/L as CaCO3,Std Method 2340 B (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Magnesium,7439-95-4,11.1,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Organic Carbon,7440-44-0,4,0.5,mg/L as C,EPA 415.3 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Total Organic Carbon,7440-44-0,4.1,0.5,mg/L as C,EPA 415.3 (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Total Phosphorus,7723-14-0,0.057,0.01,mg/L as P,EPA 365.4 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Potassium,9/7/7440,2.17,0.5,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Sodium,7440-23-5,31,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Total Dissolved Solids,0,177,2.5,mg/L,Std Method 2540 C [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved Sulfate,14808-79-8,20,5,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Total Kjeldahl Nitrogen,TKN,0.306,0.1,mg/L as N,EPA 351.2 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0422B0512,4/25/2022 9:05,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Total Alkalinity,471-34-1,72.9,20,mg/L as CaCO3,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Boron,7440-42-8,<0.1,0.1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Bromide,24959-67-9,0.205,0.1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Calcium,7440-70-2,16,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Chloride,16887-00-6,61.4,10,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Specific Conductance,0,410,5,uS/cm@25 °C,Std Method 2510-B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Hardness,0,86,1,mg/L as CaCO3,Std Method 2340 B (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Magnesium,7439-95-4,11.1,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Organic Carbon,7440-44-0,4.6,0.5,mg/L as C,EPA 415.3 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Organic Carbon,7440-44-0,4.5,0.5,mg/L as C,EPA 415.3 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Total Organic Carbon,7440-44-0,4.5,0.5,mg/L as C,EPA 415.3 (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Total Organic Carbon,7440-44-0,4.6,0.5,mg/L as C,EPA 415.3 (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Total Phosphorus,7723-14-0,0.126,0.01,mg/L as P,EPA 365.4 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Potassium,9/7/7440,3.43,0.5,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Sodium,7440-23-5,44.6,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Total Dissolved Solids,0,217,2.5,mg/L,Std Method 2540 C [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Total Dissolved Solids,0,220,2.5,mg/L,Std Method 2540 C [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved Sulfate,14808-79-8,19.1,1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Total Kjeldahl Nitrogen,TKN,0.382,0.1,mg/L as N,EPA 351.2 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0622B0692,6/16/2022 11:00,Dissolved ortho-Phosphate,14265-44-2,0.106,0.05,mg/L as P,EPA 365.1 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Total Alkalinity,471-34-1,68,20,mg/L as CaCO3,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Boron,7440-42-8,0.107,0.1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Bromide,24959-67-9,0.421,0.1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Calcium,7440-70-2,16.6,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Chloride,16887-00-6,123,10,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Specific Conductance,0,631,5,uS/cm@25 °C,Std Method 2510-B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Hardness,0,100,1,mg/L as CaCO3,Std Method 2340 B (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Magnesium,7439-95-4,14.3,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Organic Carbon,7440-44-0,4.1,0.5,mg/L as C,Std Method 5310C (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Total Organic Carbon,7440-44-0,4.4,0.5,mg/L as C,Std Method 5310C (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Organic Nitrogen,ON,0.23,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Total Phosphorus,7723-14-0,0.101,0.01,mg/L as P,EPA 365.4 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Potassium,9/7/7440,4.48,0.5,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Sodium,7440-23-5,78.5,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Total Dissolved Solids,0,327,2.5,mg/L,Std Method 2540 C [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved Sulfate,14808-79-8,22,10,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Total Kjeldahl Nitrogen,TKN,0.304,0.1,mg/L as N,EPA 351.2 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0722B0781,7/13/2022 8:57,Dissolved ortho-Phosphate,14265-44-2,0.091,0.05,mg/L as P,EPA 365.1 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Total Alkalinity,471-34-1,62.8,20,mg/L as CaCO3,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Total Alkalinity,471-34-1,63.6,20,mg/L as CaCO3,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Boron,7440-42-8,<0.1,0.1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Bromide,24959-67-9,0.342,0.1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Calcium,7440-70-2,15,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Chloride,16887-00-6,99.4,10,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Specific Conductance,0,527,5,uS/cm@25 °C,Std Method 2510-B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Hardness,0,87,1,mg/L as CaCO3,Std Method 2340 B (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Magnesium,7439-95-4,12,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Organic Carbon,7440-44-0,4.4,0.5,mg/L as C,Std Method 5310C (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Total Organic Carbon,7440-44-0,4.1,0.5,mg/L as C,Std Method 5310C (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Organic Nitrogen,ON,0.28,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Total Phosphorus,7723-14-0,0.091,0.01,mg/L as P,EPA 365.4 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Potassium,9/7/7440,4.23,0.5,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Sodium,7440-23-5,65.1,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Total Dissolved Solids,0,286,2.5,mg/L,Std Method 2540 C [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved Sulfate,14808-79-8,18,1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Total Kjeldahl Nitrogen,TKN,0.42,0.1,mg/L as N,EPA 351.2 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,Dissolved ortho-Phosphate,14265-44-2,0.08,0.05,mg/L as P,EPA 365.1 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0822B0886,8/16/2022 9:49,pH,0,7.61,0.1,pH Units,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Total Alkalinity,471-34-1,60.7,20,mg/L as CaCO3,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Boron,7440-42-8,<0.1,0.1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Bromide,24959-67-9,0.314,0.1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Calcium,7440-70-2,14.7,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Chloride,16887-00-6,96,10,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Specific Conductance,0,510,5,uS/cm@25 °C,Std Method 2510-B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Hardness,0,87,1,mg/L as CaCO3,Std Method 2340 B (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Magnesium,7439-95-4,12.2,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Organic Carbon,7440-44-0,3.9,0.5,mg/L as C,Std Method 5310C (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Total Organic Carbon,7440-44-0,3.6,0.5,mg/L as C,Std Method 5310C (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Organic Nitrogen,ON,0.25,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Total Phosphorus,7723-14-0,0.049,0.01,mg/L as P,EPA 365.4 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Potassium,9/7/7440,3.67,0.5,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Sodium,7440-23-5,65.3,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Total Dissolved Solids,0,270,2.5,mg/L,Std Method 2540 C [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved Sulfate,14808-79-8,18.3,1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Total Kjeldahl Nitrogen,TKN,0.357,0.1,mg/L as N,EPA 351.2 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF0922B0969,9/20/2022 9:24,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Total Alkalinity,471-34-1,58.6,20,mg/L as CaCO3,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Boron,7440-42-8,<0.1,0.1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Bromide,24959-67-9,0.386,0.1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Calcium,7440-70-2,14.9,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Chloride,16887-00-6,114,10,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Specific Conductance,0,570,5,uS/cm@25 °C,Std Method 2510-B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Hardness,0,90,1,mg/L as CaCO3,Std Method 2340 B (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Magnesium,7439-95-4,12.7,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Organic Carbon,7440-44-0,2.7,0.5,mg/L as C,Std Method 5310C (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Total Organic Carbon,7440-44-0,2.7,0.5,mg/L as C,Std Method 5310C (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Organic Nitrogen,ON,0.17,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Total Phosphorus,7723-14-0,0.046,0.01,mg/L as P,EPA 365.4 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Potassium,9/7/7440,3.77,0.5,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Sodium,7440-23-5,72.3,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Total Dissolved Solids,0,305,2.5,mg/L,Std Method 2540 C [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved Sulfate,14808-79-8,18.1,10,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Total Kjeldahl Nitrogen,TKN,0.188,0.1,mg/L as N,EPA 351.2 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1022B1118,10/13/2022 10:08,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Total Alkalinity,471-34-1,61.6,20,mg/L as CaCO3,Std Method 2320 B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Boron,7440-42-8,<0.1,0.1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Bromide,24959-67-9,0.431,0.1,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Calcium,7440-70-2,16.6,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Chloride,16887-00-6,133,10,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Chloride,16887-00-6,134,10,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Specific Conductance,0,666,5,uS/cm@25 °C,Std Method 2510-B [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Hardness,0,101,1,mg/L as CaCO3,Std Method 2340 B (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Magnesium,7439-95-4,14.5,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Nitrate + Nitrite,NO3+NO2,<0.05,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Organic Carbon,7440-44-0,3.5,0.5,mg/L as C,Std Method 5310C (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Total Organic Carbon,7440-44-0,3.2,0.5,mg/L as C,Std Method 5310C (T) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Organic Nitrogen,ON,0.14,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Total Phosphorus,7723-14-0,0.018,0.01,mg/L as P,EPA 365.4 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Potassium,9/7/7440,4.05,0.5,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Sodium,7440-23-5,83.2,1,mg/L,EPA 200.7 (D) [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Total Dissolved Solids,0,342,2.5,mg/L,Std Method 2540 C [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Sulfate,14808-79-8,25.2,10,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved Sulfate,14808-79-8,25.1,10,mg/L,EPA 300.0 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Total Kjeldahl Nitrogen,TKN,0.165,0.1,mg/L as N,EPA 351.2 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough @ Contra Costa WD Fish Screen,RS @CCWD Fish Screen,B9522200,CF1122B1234,11/22/2022 11:55,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,.5 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0122B0229,1/26/2022 10:47,Dissolved Bromide,24959-67-9,0.152,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0122B0229,1/26/2022 10:47,Dissolved Chloride,16887-00-6,47.3,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0222B0288,2/16/2022 9:26,Dissolved Bromide,24959-67-9,0.126,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0222B0288,2/16/2022 9:26,Dissolved Chloride,16887-00-6,40,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0322B0411,3/23/2022 8:33,Dissolved Bromide,24959-67-9,0.116,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0322B0411,3/23/2022 8:33,Dissolved Chloride,16887-00-6,37,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0422B0511,4/25/2022 9:46,Dissolved Bromide,24959-67-9,0.111,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0422B0511,4/25/2022 9:46,Dissolved Chloride,16887-00-6,37,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0622B0691,6/16/2022 11:27,Dissolved Bromide,24959-67-9,0.205,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0622B0691,6/16/2022 11:27,Dissolved Chloride,16887-00-6,63,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0722B0780,7/13/2022 9:25,Dissolved Bromide,24959-67-9,0.418,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0722B0780,7/13/2022 9:25,Dissolved Chloride,16887-00-6,122,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0822B0885,8/16/2022 10:14,Dissolved Bromide,24959-67-9,0.308,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0822B0885,8/16/2022 10:14,Dissolved Chloride,16887-00-6,88,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0922B0968,9/20/2022 9:52,Dissolved Bromide,24959-67-9,0.315,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF0922B0968,9/20/2022 9:52,Dissolved Chloride,16887-00-6,94,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF1022B1117,10/13/2022 10:35,Dissolved Bromide,24959-67-9,0.393,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF1022B1117,10/13/2022 10:35,Dissolved Chloride,16887-00-6,117,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF1122B1233,11/22/2022 11:32,Dissolved Bromide,24959-67-9,0.451,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Rock Slough at Delta Road Bridge,RS@DRB,B9D75861372,CF1122B1233,11/22/2022 11:32,Dissolved Chloride,16887-00-6,137,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Dissolved Chloride,16887-00-6,7.77,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Chlorophyll a,479-61-8,0.67,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Dissolved Nitrate + Nitrite,NO3+NO2,0.399,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Dissolved Organic Carbon,7440-44-0,2.3,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Total Organic Carbon,7440-44-0,2.3,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Dissolved Organic Nitrogen,ON,0.14,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Total Phosphorus,7723-14-0,0.038,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Total Kjeldahl Nitrogen,TKN,0.192,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0122B0180,1/13/2022 10:30,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Dissolved Chloride,16887-00-6,7.94,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Chlorophyll a,479-61-8,0.6,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Dissolved Nitrate + Nitrite,NO3+NO2,0.199,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Dissolved Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Total Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Dissolved Organic Nitrogen,ON,0.12,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Pheophytin a,0,0.84,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Total Phosphorus,7723-14-0,0.032,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Total Kjeldahl Nitrogen,TKN,0.19,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0222B0307,2/17/2022 10:27,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Dissolved Chloride,16887-00-6,6.7,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Chlorophyll a,479-61-8,0.72,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Dissolved Nitrate + Nitrite,NO3+NO2,0.287,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Dissolved Nitrate + Nitrite,NO3+NO2,0.288,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Dissolved Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Dissolved Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Total Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Total Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Dissolved Organic Nitrogen,ON,0.13,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Total Phosphorus,7723-14-0,0.032,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Total Kjeldahl Nitrogen,TKN,0.152,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0322B0403,3/17/2022 9:33,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Dissolved Chloride,16887-00-6,6.1,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Chlorophyll a,479-61-8,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Dissolved Nitrate + Nitrite,NO3+NO2,0.212,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Dissolved Organic Carbon,7440-44-0,2.6,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Total Organic Carbon,7440-44-0,2.4,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Dissolved Organic Nitrogen,ON,1.09,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Total Phosphorus,7723-14-0,0.049,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Total Kjeldahl Nitrogen,TKN,0.189,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0422B0527,4/28/2022 9:50,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Dissolved Chloride,16887-00-6,5.02,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Chlorophyll a,479-61-8,0.66,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Dissolved Nitrate + Nitrite,NO3+NO2,0.19,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Dissolved Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Total Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Dissolved Organic Nitrogen,ON,0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Total Phosphorus,7723-14-0,0.04,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Total Kjeldahl Nitrogen,TKN,<0.1,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0622B0677,6/10/2022 9:27,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Dissolved Chloride,16887-00-6,4.28,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Chlorophyll a,479-61-8,0.93,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Dissolved Nitrate + Nitrite,NO3+NO2,0.149,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Dissolved Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Dissolved Organic Carbon,7440-44-0,1.7,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Total Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Total Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Dissolved Organic Nitrogen,ON,0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Pheophytin a,0,0.61,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Total Phosphorus,7723-14-0,0.032,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Total Kjeldahl Nitrogen,TKN,0.121,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0722B0815,7/28/2022 9:58,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Dissolved Chloride,16887-00-6,11.4,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Chlorophyll a,479-61-8,1.12,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Dissolved Nitrate + Nitrite,NO3+NO2,0.077,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Dissolved Organic Carbon,7440-44-0,2,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Total Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Dissolved Organic Nitrogen,ON,0.12,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Total Phosphorus,7723-14-0,0.047,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Total Kjeldahl Nitrogen,TKN,0.131,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0822B0898,8/18/2022 9:58,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Dissolved Chloride,16887-00-6,5.61,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Chlorophyll a,479-61-8,0.71,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Dissolved Nitrate + Nitrite,NO3+NO2,0.224,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Dissolved Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Total Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Dissolved Organic Nitrogen,ON,<0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Total Phosphorus,7723-14-0,0.03,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Total Kjeldahl Nitrogen,TKN,0.106,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF0922B0977,9/20/2022 9:28,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Dissolved Chloride,16887-00-6,4.84,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Chlorophyll a,479-61-8,0.51,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Dissolved Nitrate + Nitrite,NO3+NO2,0.204,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Dissolved Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Total Organic Carbon,7440-44-0,2,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Dissolved Organic Nitrogen,ON,<0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Total Phosphorus,7723-14-0,0.031,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Total Kjeldahl Nitrogen,TKN,<0.1,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1022B1164,10/20/2022 9:18,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Dissolved Chloride,16887-00-6,7.77,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Chlorophyll a,479-61-8,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Dissolved Nitrate + Nitrite,NO3+NO2,0.291,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Dissolved Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Total Organic Carbon,7440-44-0,2,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Dissolved Organic Nitrogen,ON,0.12,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Total Phosphorus,7723-14-0,0.076,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Total Kjeldahl Nitrogen,TKN,0.149,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1122B1230,11/17/2022 11:00,Dissolved ortho-Phosphate,14265-44-2,0.075,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Dissolved Chloride,16887-00-6,10.3,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Chlorophyll a,479-61-8,0.6,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Dissolved Nitrate + Nitrite,NO3+NO2,0.745,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Dissolved Organic Carbon,7440-44-0,4.6,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Total Organic Carbon,7440-44-0,4.5,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Dissolved Organic Nitrogen,ON,0.42,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Pheophytin a,0,1.37,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Total Phosphorus,7723-14-0,0.08,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Total Kjeldahl Nitrogen,TKN,0.437,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Sacramento River Downstream of Isleton,Sac R. DS Isleton,B9D81051394,CF1222B1621,12/20/2022 11:13,Dissolved ortho-Phosphate,14265-44-2,0.058,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Dissolved Chloride,16887-00-6,8.18,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Chlorophyll a,479-61-8,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Dissolved Nitrate + Nitrite,NO3+NO2,0.467,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Dissolved Organic Carbon,7440-44-0,2.7,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Dissolved Organic Carbon,7440-44-0,2.9,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Total Organic Carbon,7440-44-0,2.8,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Total Organic Carbon,7440-44-0,2.7,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Dissolved Organic Nitrogen,ON,0.18,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Pheophytin a,0,0.77,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Total Phosphorus,7723-14-0,0.043,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Total Kjeldahl Nitrogen,TKN,0.221,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0122B0179,1/13/2022 9:58,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Dissolved Chloride,16887-00-6,7.22,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Chlorophyll a,479-61-8,0.81,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Dissolved Nitrate + Nitrite,NO3+NO2,0.283,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Dissolved Organic Carbon,7440-44-0,2.4,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Dissolved Organic Carbon,7440-44-0,2.4,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",Duplicate,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Total Organic Carbon,7440-44-0,2.5,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Total Organic Carbon,7440-44-0,2.4,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",Duplicate,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Dissolved Organic Nitrogen,ON,<0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Pheophytin a,0,0.86,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Total Phosphorus,7723-14-0,0.042,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Total Kjeldahl Nitrogen,TKN,0.197,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0222B0306,2/17/2022 9:57,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0222B0306) and duplicate (CF0222B0308) samples for Dissolved Organic Nitrogen (EPA 351.2/EPA 350.1) exceeded the Relative Percent Difference standard.
+CF0222B0306 = <0.1, CF02220308 = 0.16
+All other analytes passed QC requirements and are considered validated.",,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Dissolved Chloride,16887-00-6,7.12,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Chlorophyll a,479-61-8,1.41,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Dissolved Nitrate + Nitrite,NO3+NO2,0.217,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Dissolved Organic Carbon,7440-44-0,2.2,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Total Organic Carbon,7440-44-0,2.3,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Dissolved Organic Nitrogen,ON,0.14,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Pheophytin a,0,0.77,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Total Phosphorus,7723-14-0,0.041,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Total Kjeldahl Nitrogen,TKN,0.192,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0322B0402,3/17/2022 9:05,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Dissolved Chloride,16887-00-6,6.3,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Chlorophyll a,479-61-8,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Dissolved Nitrate + Nitrite,NO3+NO2,0.213,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Dissolved Organic Carbon,7440-44-0,2.7,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Dissolved Organic Carbon,7440-44-0,2.6,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",Duplicate,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Total Organic Carbon,7440-44-0,2.8,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",Duplicate,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Total Organic Carbon,7440-44-0,2.9,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Dissolved Organic Nitrogen,ON,0.16,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Pheophytin a,0,0.51,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Total Phosphorus,7723-14-0,0.048,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Total Kjeldahl Nitrogen,TKN,0.188,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0422B0526,4/28/2022 10:19,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,"Sample not validated; difference between parent (CF0422B0526) and duplicate (CF0422B0528) samples for Total Phosphorus (EPA 365.4) exceeded the Relative Percent Difference standard.
+*This appears to be due to a transcription error. Waiting for response from analytical lab
+All other analytes were validated",,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Dissolved Chloride,16887-00-6,5.61,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Chlorophyll a,479-61-8,0.58,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Dissolved Nitrate + Nitrite,NO3+NO2,0.229,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Dissolved Organic Carbon,7440-44-0,2.4,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Total Organic Carbon,7440-44-0,2.3,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Dissolved Organic Nitrogen,ON,0.12,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Pheophytin a,0,0.53,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Total Phosphorus,7723-14-0,0.043,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Total Kjeldahl Nitrogen,TKN,<0.1,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0622B0676,6/10/2022 8:56,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Dissolved Chloride,16887-00-6,3.89,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Chlorophyll a,479-61-8,0.74,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Dissolved Nitrate + Nitrite,NO3+NO2,0.1,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Dissolved Nitrate + Nitrite,NO3+NO2,0.099,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Dissolved Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Total Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Dissolved Organic Nitrogen,ON,0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Pheophytin a,0,0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Total Phosphorus,7723-14-0,0.033,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Total Kjeldahl Nitrogen,TKN,0.141,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0722B0814,7/28/2022 9:27,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Dissolved Chloride,16887-00-6,5.1,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Chlorophyll a,479-61-8,0.81,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Dissolved Nitrate + Nitrite,NO3+NO2,0.114,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Dissolved Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Total Organic Carbon,7440-44-0,1.8,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Dissolved Organic Nitrogen,ON,<0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Pheophytin a,0,0.64,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Total Phosphorus,7723-14-0,0.036,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Total Kjeldahl Nitrogen,TKN,0.176,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF0822B0897,8/18/2022 9:14,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Dissolved Chloride,16887-00-6,4.2,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Chlorophyll a,479-61-8,0.6,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Dissolved Nitrate + Nitrite,NO3+NO2,0.116,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Dissolved Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Total Organic Carbon,7440-44-0,2,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Dissolved Organic Nitrogen,ON,0.11,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Total Phosphorus,7723-14-0,0.033,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Total Kjeldahl Nitrogen,TKN,0.122,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Steamboat Slough,Steamboat Slough,B9S81131386,CF0922B0976,9/20/2022 9:01,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Dissolved Chloride,16887-00-6,5.23,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Chlorophyll a,479-61-8,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Dissolved Nitrate + Nitrite,NO3+NO2,0.233,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Dissolved Organic Carbon,7440-44-0,2,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Total Organic Carbon,7440-44-0,2.1,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Dissolved Organic Nitrogen,ON,<0.1,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Total Phosphorus,7723-14-0,0.032,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Total Kjeldahl Nitrogen,TKN,<0.1,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1022B1163,10/20/2022 8:45,Dissolved ortho-Phosphate,14265-44-2,<0.05,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Dissolved Chloride,16887-00-6,6.86,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Chlorophyll a,479-61-8,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Dissolved Nitrate + Nitrite,NO3+NO2,0.284,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Dissolved Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Total Organic Carbon,7440-44-0,1.9,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Dissolved Organic Nitrogen,ON,0.12,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Total Phosphorus,7723-14-0,0.083,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Total Kjeldahl Nitrogen,TKN,0.181,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1122B1229,11/17/2022 10:30,Dissolved ortho-Phosphate,14265-44-2,0.084,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Dissolved Ammonia,7664-41-7,<0.05,0.05,mg/L as N,EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Dissolved Bromide,24959-67-9,<0.1,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Dissolved Chloride,16887-00-6,9.91,1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Chlorophyll a,479-61-8,0.56,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Dissolved Nitrate + Nitrite,NO3+NO2,0.737,0.05,mg/L as N,Std Method 4500-NO3-F [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Dissolved Organic Carbon,7440-44-0,4.6,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Dissolved Organic Carbon,7440-44-0,4.9,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Total Organic Carbon,7440-44-0,4.9,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Total Organic Carbon,7440-44-0,4.5,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Dissolved Organic Nitrogen,ON,0.41,0.1,mg/L as N,EPA 351.2/EPA 350.1 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Pheophytin a,0,0.68,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Total Phosphorus,7723-14-0,0.079,0.01,mg/L as P,EPA 365.4 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Total Kjeldahl Nitrogen,TKN,0.42,0.1,mg/L as N,EPA 351.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Steamboat Slough,Steamboat Slough,B9S81131386,CF1222B1620,12/20/2022 10:29,Dissolved ortho-Phosphate,14265-44-2,0.06,0.05,mg/L as P,EPA 365.1 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0122B0232,1/26/2022 9:15,Dissolved Bromide,24959-67-9,0.137,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0122B0232,1/26/2022 9:15,Dissolved Chloride,16887-00-6,45,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0222B0291,2/16/2022 8:21,Dissolved Bromide,24959-67-9,0.123,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0222B0291,2/16/2022 8:21,Dissolved Chloride,16887-00-6,37.1,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0322B0414,3/23/2022 7:18,Dissolved Bromide,24959-67-9,0.111,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0322B0414,3/23/2022 7:18,Dissolved Chloride,16887-00-6,35,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0422B0514,4/25/2022 8:10,Dissolved Bromide,24959-67-9,0.118,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0422B0514,4/25/2022 8:10,Dissolved Chloride,16887-00-6,36.2,5,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0622B0694,6/16/2022 10:17,Dissolved Bromide,24959-67-9,0.237,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0622B0694,6/16/2022 10:17,Dissolved Chloride,16887-00-6,60.1,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0722B0783,7/13/2022 8:12,Dissolved Bromide,24959-67-9,0.398,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0722B0783,7/13/2022 8:12,Dissolved Chloride,16887-00-6,116,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0822B0888,8/16/2022 9:19,Dissolved Bromide,24959-67-9,0.281,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0822B0888,8/16/2022 9:19,Dissolved Chloride,16887-00-6,81.6,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0922B0971,9/20/2022 8:37,Dissolved Bromide,24959-67-9,0.319,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF0922B0971,9/20/2022 8:37,Dissolved Chloride,16887-00-6,92,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF1022B1120,10/13/2022 9:27,Dissolved Bromide,24959-67-9,0.41,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF1022B1120,10/13/2022 9:27,Dissolved Chloride,16887-00-6,121,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF1122B1236,11/22/2022 10:55,Dissolved Bromide,24959-67-9,0.466,0.1,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3000 - Public, Review Status Unknown",Werner Dredger Cut near Palm Tract,WDC. n. Palm Tract,B9D75781357,CF1122B1236,11/22/2022 10:55,Dissolved Chloride,16887-00-6,140,10,mg/L,EPA 300.0 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0122B0110,1/3/2022 13:31,Chlorophyll a,479-61-8,0.91,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0122B0110,1/3/2022 13:31,Dissolved Organic Carbon,7440-44-0,7.4,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0122B0110,1/3/2022 13:31,Dissolved Organic Carbon,7440-44-0,7.1,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0122B0110,1/3/2022 13:31,Total Organic Carbon,7440-44-0,7.5,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0122B0110,1/3/2022 13:31,Total Organic Carbon,7440-44-0,7.1,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0122B0110,1/3/2022 13:31,Pheophytin a,0,3.72,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0122B0110,1/3/2022 13:31,Total Suspended Solids,0,27.7,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0222B0276,2/14/2022 12:34,Chlorophyll a,479-61-8,9.75,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0222B0276,2/14/2022 12:34,Dissolved Organic Carbon,7440-44-0,6.5,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0222B0276,2/14/2022 12:34,Dissolved Organic Carbon,7440-44-0,7.1,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0222B0276,2/14/2022 12:34,Total Organic Carbon,7440-44-0,6.8,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0222B0276,2/14/2022 12:34,Total Organic Carbon,7440-44-0,6.7,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0222B0276,2/14/2022 12:34,Pheophytin a,0,12.2,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0222B0276,2/14/2022 12:34,Total Suspended Solids,0,36.7,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0322B0350,3/14/2022 14:57,Chlorophyll a,479-61-8,27.4,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0322B0350,3/14/2022 14:57,Dissolved Organic Carbon,7440-44-0,6.2,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0322B0350,3/14/2022 14:57,Total Organic Carbon,7440-44-0,6.6,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0322B0350,3/14/2022 14:57,Pheophytin a,0,3.58,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0322B0350,3/14/2022 14:57,Total Suspended Solids,0,23.8,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0422B0425,4/4/2022 10:43,Chlorophyll a,479-61-8,8.48,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0422B0425,4/4/2022 10:43,Dissolved Organic Carbon,7440-44-0,6.2,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0422B0425,4/4/2022 10:43,Dissolved Organic Carbon,7440-44-0,6.2,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0422B0425,4/4/2022 10:43,Total Organic Carbon,7440-44-0,6.2,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0422B0425,4/4/2022 10:43,Total Organic Carbon,7440-44-0,6.2,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0422B0425,4/4/2022 10:43,Pheophytin a,0,3.71,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0422B0425,4/4/2022 10:43,Total Suspended Solids,0,17.2,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0522B0551,5/2/2022 10:25,Chlorophyll a,479-61-8,5.36,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0522B0551,5/2/2022 10:25,Dissolved Organic Carbon,7440-44-0,7.8,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0522B0551,5/2/2022 10:25,Dissolved Organic Carbon,7440-44-0,7.2,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0522B0551,5/2/2022 10:25,Total Organic Carbon,7440-44-0,7.4,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Duplicate,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0522B0551,5/2/2022 10:25,Total Organic Carbon,7440-44-0,8.1,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0522B0551,5/2/2022 10:25,Pheophytin a,0,3.75,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0522B0551,5/2/2022 10:25,Total Suspended Solids,0,44.2,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0622B0649,6/6/2022 10:44,Chlorophyll a,479-61-8,2.43,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0622B0649,6/6/2022 10:44,Dissolved Organic Carbon,7440-44-0,4.7,0.5,mg/L as C,EPA 415.3 (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0622B0649,6/6/2022 10:44,Total Organic Carbon,7440-44-0,4.5,0.5,mg/L as C,EPA 415.3 (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0622B0649,6/6/2022 10:44,Pheophytin a,0,0.86,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0622B0649,6/6/2022 10:44,Total Suspended Solids,0,34,2.5,mg/L,EPA 160.2 [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0722B0744,7/5/2022 12:56,Chlorophyll a,479-61-8,3.45,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0722B0744,7/5/2022 12:56,Dissolved Organic Carbon,7440-44-0,4.4,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0722B0744,7/5/2022 12:56,Total Organic Carbon,7440-44-0,4.4,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0722B0744,7/5/2022 12:56,Pheophytin a,0,<0.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0722B0744,7/5/2022 12:56,Total Suspended Solids,0,29,2.5,mg/L,Std Method 2540 D [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0822B0832,8/8/2022 11:52,Chlorophyll a,479-61-8,4.06,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0822B0832,8/8/2022 11:52,Dissolved Organic Carbon,7440-44-0,3.5,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0822B0832,8/8/2022 11:52,Total Organic Carbon,7440-44-0,3.6,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0822B0832,8/8/2022 11:52,Pheophytin a,0,0.69,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0822B0832,8/8/2022 11:52,Total Suspended Solids,0,17.1,2.5,mg/L,Std Method 2540 D [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0922B0921,9/6/2022 8:28,Chlorophyll a,479-61-8,3.35,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0922B0921,9/6/2022 8:28,Dissolved Organic Carbon,7440-44-0,3.9,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0922B0921,9/6/2022 8:28,Total Organic Carbon,7440-44-0,3.8,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0922B0921,9/6/2022 8:28,Pheophytin a,0,1.35,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF0922B0921,9/6/2022 8:28,Total Suspended Solids,0,20.8,2.5,mg/L,Std Method 2540 D [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1022B0998,10/3/2022 11:17,Chlorophyll a,479-61-8,4.05,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1022B0998,10/3/2022 11:17,Dissolved Organic Carbon,7440-44-0,3.6,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1022B0998,10/3/2022 11:17,Total Organic Carbon,7440-44-0,3.7,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,Matrix Spike,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1022B0998,10/3/2022 11:17,Pheophytin a,0,1.05,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1022B0998,10/3/2022 11:17,Total Suspended Solids,0,30,2.5,mg/L,Std Method 2540 D [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1122B1186,11/7/2022 11:17,Chlorophyll a,479-61-8,4.1,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1122B1186,11/7/2022 11:17,Dissolved Organic Carbon,7440-44-0,5.8,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1122B1186,11/7/2022 11:17,Total Organic Carbon,7440-44-0,5.6,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1122B1186,11/7/2022 11:17,Pheophytin a,0,1.5,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1122B1186,11/7/2022 11:17,Total Suspended Solids,0,25.9,2.5,mg/L,Std Method 2540 D [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1122B1240,11/28/2022 14:13,Chlorophyll a,479-61-8,6.87,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1122B1240,11/28/2022 14:13,Dissolved Organic Carbon,7440-44-0,5.1,0.5,mg/L as C,Std Method 5310C (D) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1122B1240,11/28/2022 14:13,Total Organic Carbon,7440-44-0,5.3,0.5,mg/L as C,Std Method 5310C (T) [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1122B1240,11/28/2022 14:13,Pheophytin a,0,1.16,0.5,ug/L,Std Method 10200 H [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+6301,"3500 - Public, Reviewed and Validated",Yolo Bypass Toe Drain Below Lisbon Weir,Toe Drain YB LISBON,B9D82851352,CF1122B1240,11/28/2022 14:13,Total Suspended Solids,0,6.9,2.5,mg/L,Std Method 2540 D [1]*,1 Meters,"Water, Natural",Normal Sample,0,,,N
+"
+",,,,,,,,,,,,,,,,,,,
+"*Codes in brackets ([]) following the analyte name refer to the Method Comparibility Code. For more information, please refer to https://cdowr-dev.outsystemsenterprise.com/WaterDataLibrary/MTCCodes.aspx.",,,,,,,,,,,,,,,,,,,
diff --git a/data-raw/NCRO/WQDiscrete_SouthDelta_CY2022.xlsx b/data-raw/NCRO/WQDiscrete_SouthDelta_CY2022.xlsx
new file mode 100644
index 0000000..e681bd0
Binary files /dev/null and b/data-raw/NCRO/WQDiscrete_SouthDelta_CY2022.xlsx differ
diff --git a/data-raw/NCRO/extra_field_data_cnra.csv b/data-raw/NCRO/extra_field_data_cnra.csv
new file mode 100644
index 0000000..795f024
--- /dev/null
+++ b/data-raw/NCRO/extra_field_data_cnra.csv
@@ -0,0 +1,914 @@
+LongStationName,StationNumber,SampleCode,CollectionDate,Analyte,Result,SampleType
+West Canal Above Clifton Court Intake,B9D74991332,CF0122B0160,2022-01-11 10:56:00,Field Dissolved Oxygen,9.18,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0122B0160,2022-01-11 10:56:00,Field Specific Conductance,499.4,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0122B0160,2022-01-11 10:56:00,Field Turbidity,4.75,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0122B0160,2022-01-11 10:56:00,Field Water Temperature,9.307,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0122B0160,2022-01-11 10:56:00,Field pH,8.13,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0222B0255,2022-02-08 10:26:00,Field Dissolved Oxygen,10.76,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0222B0255,2022-02-08 10:26:00,Field Specific Conductance,386.4,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0222B0255,2022-02-08 10:26:00,Field Turbidity,4.13,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0222B0255,2022-02-08 10:26:00,Field Water Temperature,10.182,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0222B0255,2022-02-08 10:26:00,Field pH,7.54,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0322B0333,2022-03-08 10:58:00,Field Dissolved Oxygen,9.89,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0322B0333,2022-03-08 10:58:00,Field Specific Conductance,454.3,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0322B0333,2022-03-08 10:58:00,Field Turbidity,2.58,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0322B0333,2022-03-08 10:58:00,Field Water Temperature,12.899,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0322B0333,2022-03-08 10:58:00,Field pH,7.65,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0422B0453,2022-04-12 09:26:00,Field Dissolved Oxygen,8.84,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0422B0453,2022-04-12 09:26:00,Field Specific Conductance,431.4,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0422B0453,2022-04-12 09:26:00,Field Turbidity,3.63,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0422B0453,2022-04-12 09:26:00,Field Water Temperature,16.667,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0422B0453,2022-04-12 09:26:00,Field pH,7.81,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0522B0595,2022-05-10 10:16:00,Field Dissolved Oxygen,9.31,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0522B0595,2022-05-10 10:16:00,Field Specific Conductance,402.8,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0522B0595,2022-05-10 10:16:00,Field Turbidity,3.05,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0522B0595,2022-05-10 10:16:00,Field Water Temperature,18.023,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0522B0595,2022-05-10 10:16:00,Field pH,8.07,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0622B0656,2022-06-06 09:40:00,Field Dissolved Oxygen,6.75,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0622B0656,2022-06-06 09:40:00,Field Specific Conductance,405,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0622B0656,2022-06-06 09:40:00,Field Turbidity,2.87,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0622B0656,2022-06-06 09:40:00,Field Water Temperature,22.208,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0622B0656,2022-06-06 09:40:00,Field pH,7.37,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0722B0759,2022-07-12 10:00:00,Field Dissolved Oxygen,7.02,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0722B0759,2022-07-12 10:00:00,Field Specific Conductance,596,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0722B0759,2022-07-12 10:00:00,Field Turbidity,3.11,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0722B0759,2022-07-12 10:00:00,Field Water Temperature,25.751,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0722B0759,2022-07-12 10:00:00,Field pH,7.52,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0822B0839,2022-08-09 10:02:00,Field Dissolved Oxygen,7.07,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0822B0839,2022-08-09 10:02:00,Field Specific Conductance,445.5,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0822B0839,2022-08-09 10:02:00,Field Turbidity,3.3,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0822B0839,2022-08-09 10:02:00,Field Water Temperature,24.718,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0822B0839,2022-08-09 10:02:00,Field pH,7.33,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0922B0952,2022-09-13 12:41:00,Field Dissolved Oxygen,7.02,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0922B0952,2022-09-13 12:41:00,Field Specific Conductance,454.7,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0922B0952,2022-09-13 12:41:00,Field Turbidity,3.61,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0922B0952,2022-09-13 12:41:00,Field Water Temperature,24.273,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF0922B0952,2022-09-13 12:41:00,Field pH,7.52,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF1122B1193,2022-11-08 11:01:00,Field Dissolved Oxygen,9.07,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF1122B1193,2022-11-08 11:01:00,Field Specific Conductance,568,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF1122B1193,2022-11-08 11:01:00,Field Turbidity,2.28,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF1122B1193,2022-11-08 11:01:00,Field Water Temperature,14.46,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF1122B1193,2022-11-08 11:01:00,Field pH,7.65,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF1222B1610,2022-12-13 11:05:00,Field Dissolved Oxygen,10.06,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF1222B1610,2022-12-13 11:05:00,Field Specific Conductance,661,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF1222B1610,2022-12-13 11:05:00,Field Turbidity,3.05,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF1222B1610,2022-12-13 11:05:00,Field Water Temperature,9.999,Normal Sample
+West Canal Above Clifton Court Intake,B9D74991332,CF1222B1610,2022-12-13 11:05:00,Field pH,7.57,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0122B0232,2022-01-26 09:15:00,Field Dissolved Oxygen,9.8,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0122B0232,2022-01-26 09:15:00,Field Specific Conductance,358.8,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0122B0232,2022-01-26 09:15:00,Field Turbidity,10.57,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0122B0232,2022-01-26 09:15:00,Field Water Temperature,9.925,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0122B0232,2022-01-26 09:15:00,Field pH,7.65,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0222B0291,2022-02-16 08:21:00,Field Dissolved Oxygen,10.33,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0222B0291,2022-02-16 08:21:00,Field Specific Conductance,339.6,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0222B0291,2022-02-16 08:21:00,Field Turbidity,4.99,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0222B0291,2022-02-16 08:21:00,Field Water Temperature,11.202,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0222B0291,2022-02-16 08:21:00,Field pH,7.72,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0322B0414,2022-03-23 07:18:00,Field Dissolved Oxygen,8.95,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0322B0414,2022-03-23 07:18:00,Field Specific Conductance,340.3,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0322B0414,2022-03-23 07:18:00,Field Turbidity,5.8,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0322B0414,2022-03-23 07:18:00,Field Water Temperature,15.67,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0322B0414,2022-03-23 07:18:00,Field pH,7.66,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0422B0514,2022-04-25 08:10:00,Field Dissolved Oxygen,9.46,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0422B0514,2022-04-25 08:10:00,Field Specific Conductance,339,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0422B0514,2022-04-25 08:10:00,Field Turbidity,3.9,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0422B0514,2022-04-25 08:10:00,Field Water Temperature,17.899,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0422B0514,2022-04-25 08:10:00,Field pH,7.99,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0622B0694,2022-06-16 10:17:00,Field Dissolved Oxygen,7.01,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0622B0694,2022-06-16 10:17:00,Field Specific Conductance,444.3,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0622B0694,2022-06-16 10:17:00,Field Turbidity,2.73,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0622B0694,2022-06-16 10:17:00,Field Water Temperature,23.088,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0622B0694,2022-06-16 10:17:00,Field pH,7.51,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0722B0783,2022-07-13 08:12:00,Field Dissolved Oxygen,6.82,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0722B0783,2022-07-13 08:12:00,Field Specific Conductance,597,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0722B0783,2022-07-13 08:12:00,Field Turbidity,1.92,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0722B0783,2022-07-13 08:12:00,Field Water Temperature,24.302,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0722B0783,2022-07-13 08:12:00,Field pH,7.6,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0822B0888,2022-08-16 09:19:00,Field Dissolved Oxygen,6.69,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0822B0888,2022-08-16 09:19:00,Field Specific Conductance,437.3,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0822B0888,2022-08-16 09:19:00,Field Turbidity,2.53,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0822B0888,2022-08-16 09:19:00,Field Water Temperature,24.58,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0822B0888,2022-08-16 09:19:00,Field pH,7.42,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0922B0971,2022-09-20 08:37:00,Field Specific Conductance,486.2,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0922B0971,2022-09-20 08:37:00,Field Turbidity,2.27,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0922B0971,2022-09-20 08:37:00,Field Water Temperature,21.808,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF0922B0971,2022-09-20 08:37:00,Field pH,7.5,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF1022B1120,2022-10-13 09:27:00,Field Dissolved Oxygen,7.84,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF1022B1120,2022-10-13 09:27:00,Field Specific Conductance,598,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF1022B1120,2022-10-13 09:27:00,Field Turbidity,1.56,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF1022B1120,2022-10-13 09:27:00,Field Water Temperature,20.927,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF1022B1120,2022-10-13 09:27:00,Field pH,7.4,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF1122B1236,2022-11-22 10:55:00,Field Dissolved Oxygen,10.57,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF1122B1236,2022-11-22 10:55:00,Field Specific Conductance,685,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF1122B1236,2022-11-22 10:55:00,Field Turbidity,0.98,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF1122B1236,2022-11-22 10:55:00,Field Water Temperature,11.34,Normal Sample
+Werner Dredger Cut near Palm Tract,B9D75781357,CF1122B1236,2022-11-22 10:55:00,Field pH,7.74,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0122B0231,2022-01-26 11:12:00,Field Dissolved Oxygen,9.51,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0122B0231,2022-01-26 11:12:00,Field Specific Conductance,335.9,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0122B0231,2022-01-26 11:12:00,Field Turbidity,7.99,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0122B0231,2022-01-26 11:12:00,Field Water Temperature,9.898,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0122B0231,2022-01-26 11:12:00,Field pH,7.46,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0222B0290,2022-02-16 09:50:00,Field Dissolved Oxygen,10.18,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0222B0290,2022-02-16 09:50:00,Field Specific Conductance,334.8,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0222B0290,2022-02-16 09:50:00,Field Turbidity,4.47,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0222B0290,2022-02-16 09:50:00,Field Water Temperature,11.359,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0222B0290,2022-02-16 09:50:00,Field pH,7.62,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0322B0413,2022-03-23 08:57:00,Field Dissolved Oxygen,9.72,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0322B0413,2022-03-23 08:57:00,Field Specific Conductance,315.1,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0322B0413,2022-03-23 08:57:00,Field Turbidity,4.16,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0322B0413,2022-03-23 08:57:00,Field Water Temperature,15.826,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0322B0413,2022-03-23 08:57:00,Field pH,7.85,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0422B0513,2022-04-25 10:22:00,Field Dissolved Oxygen,8.72,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0422B0513,2022-04-25 10:22:00,Field Specific Conductance,310.6,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0422B0513,2022-04-25 10:22:00,Field Turbidity,3.21,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0422B0513,2022-04-25 10:22:00,Field Water Temperature,17.757,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0622B0693,2022-06-16 11:52:00,Field Dissolved Oxygen,6.85,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0622B0693,2022-06-16 11:52:00,Field Specific Conductance,458.1,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0622B0693,2022-06-16 11:52:00,Field Turbidity,2.62,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0622B0693,2022-06-16 11:52:00,Field Water Temperature,23.134,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0622B0693,2022-06-16 11:52:00,Field pH,7.48,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0722B0782,2022-07-13 10:01:00,Field Dissolved Oxygen,6.59,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0722B0782,2022-07-13 10:01:00,Field Specific Conductance,596,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0722B0782,2022-07-13 10:01:00,Field Turbidity,2.51,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0722B0782,2022-07-13 10:01:00,Field Water Temperature,24.368,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0722B0782,2022-07-13 10:01:00,Field pH,7.55,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0822B0887,2022-08-16 10:40:00,Field Dissolved Oxygen,6.86,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0822B0887,2022-08-16 10:40:00,Field Specific Conductance,437.7,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0822B0887,2022-08-16 10:40:00,Field Turbidity,3.3,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0822B0887,2022-08-16 10:40:00,Field Water Temperature,24.508,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0822B0887,2022-08-16 10:40:00,Field pH,7.53,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0922B0970,2022-09-20 10:17:00,Field Dissolved Oxygen,7.05,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0922B0970,2022-09-20 10:17:00,Field Specific Conductance,481.6,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0922B0970,2022-09-20 10:17:00,Field Turbidity,1.36,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0922B0970,2022-09-20 10:17:00,Field Water Temperature,22.025,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF0922B0970,2022-09-20 10:17:00,Field pH,7.45,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF1022B1119,2022-10-13 11:06:00,Field Dissolved Oxygen,8,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF1022B1119,2022-10-13 11:06:00,Field Specific Conductance,604,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF1022B1119,2022-10-13 11:06:00,Field Turbidity,19.69,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF1022B1119,2022-10-13 11:06:00,Field Water Temperature,20.89,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF1022B1119,2022-10-13 11:06:00,Field pH,7.59,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF1122B1235,2022-11-22 10:27:00,Field Dissolved Oxygen,9.87,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF1122B1235,2022-11-22 10:27:00,Field Specific Conductance,699,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF1122B1235,2022-11-22 10:27:00,Field Turbidity,1.43,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF1122B1235,2022-11-22 10:27:00,Field Water Temperature,11.401,Normal Sample
+Holland Cut at Holland Marina,B9D75841349,CF1122B1235,2022-11-22 10:27:00,Field pH,7.58,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0122B0229,2022-01-26 10:47:00,Field Dissolved Oxygen,10.42,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0122B0229,2022-01-26 10:47:00,Field Specific Conductance,374.7,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0122B0229,2022-01-26 10:47:00,Field Turbidity,2.24,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0122B0229,2022-01-26 10:47:00,Field Water Temperature,9.971,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0122B0229,2022-01-26 10:47:00,Field pH,7.55,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0222B0288,2022-02-16 09:26:00,Field Dissolved Oxygen,10.68,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0222B0288,2022-02-16 09:26:00,Field Specific Conductance,352.9,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0222B0288,2022-02-16 09:26:00,Field Turbidity,1.7,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0222B0288,2022-02-16 09:26:00,Field Water Temperature,11.061,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0222B0288,2022-02-16 09:26:00,Field pH,7.73,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0322B0411,2022-03-23 08:33:00,Field Dissolved Oxygen,8.82,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0322B0411,2022-03-23 08:33:00,Field Specific Conductance,356.4,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0322B0411,2022-03-23 08:33:00,Field Turbidity,1.34,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0322B0411,2022-03-23 08:33:00,Field Water Temperature,16.287,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0322B0411,2022-03-23 08:33:00,Field pH,7.64,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0422B0511,2022-04-25 09:46:00,Field Dissolved Oxygen,9.21,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0422B0511,2022-04-25 09:46:00,Field Specific Conductance,330.9,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0422B0511,2022-04-25 09:46:00,Field Water Temperature,17.903,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0422B0511,2022-04-25 09:46:00,Field pH,7.99,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0622B0691,2022-06-16 11:27:00,Field Dissolved Oxygen,5.73,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0622B0691,2022-06-16 11:27:00,Field Specific Conductance,415.1,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0622B0691,2022-06-16 11:27:00,Field Turbidity,0.99,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0622B0691,2022-06-16 11:27:00,Field Water Temperature,23.471,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0622B0691,2022-06-16 11:27:00,Field pH,7.3,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0722B0780,2022-07-13 09:25:00,Field Dissolved Oxygen,5.85,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0722B0780,2022-07-13 09:25:00,Field Specific Conductance,628,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0722B0780,2022-07-13 09:25:00,Field Turbidity,1.04,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0722B0780,2022-07-13 09:25:00,Field Water Temperature,25.115,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0722B0780,2022-07-13 09:25:00,Field pH,7.36,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0822B0885,2022-08-16 10:14:00,Field Dissolved Oxygen,3.99,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0822B0885,2022-08-16 10:14:00,Field Specific Conductance,475.4,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0822B0885,2022-08-16 10:14:00,Field Turbidity,1.77,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0822B0885,2022-08-16 10:14:00,Field Water Temperature,25.408,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0822B0885,2022-08-16 10:14:00,Field pH,7.02,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0922B0968,2022-09-20 09:52:00,Field Dissolved Oxygen,6.21,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0922B0968,2022-09-20 09:52:00,Field Specific Conductance,494.3,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0922B0968,2022-09-20 09:52:00,Field Turbidity,1.58,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0922B0968,2022-09-20 09:52:00,Field Water Temperature,21.525,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF0922B0968,2022-09-20 09:52:00,Field pH,7.27,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF1022B1117,2022-10-13 10:35:00,Field Dissolved Oxygen,7.96,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF1022B1117,2022-10-13 10:35:00,Field Specific Conductance,601,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF1022B1117,2022-10-13 10:35:00,Field Turbidity,12.31,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF1022B1117,2022-10-13 10:35:00,Field Water Temperature,21.147,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF1022B1117,2022-10-13 10:35:00,Field pH,7.58,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF1122B1233,2022-11-22 11:32:00,Field Dissolved Oxygen,11.04,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF1122B1233,2022-11-22 11:32:00,Field Specific Conductance,674,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF1122B1233,2022-11-22 11:32:00,Field Turbidity,0.53,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF1122B1233,2022-11-22 11:32:00,Field Water Temperature,10.764,Normal Sample
+Rock Slough at Delta Road Bridge,B9D75861372,CF1122B1233,2022-11-22 11:32:00,Field pH,7.86,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0522B0613,2022-05-12 12:39:00,Field Dissolved Oxygen,10.02,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0522B0613,2022-05-12 12:39:00,Field Specific Conductance,297.6,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0522B0613,2022-05-12 12:39:00,Field Turbidity,4.22,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0522B0613,2022-05-12 12:39:00,Field Water Temperature,16.92,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0522B0613,2022-05-12 12:39:00,Field pH,8.2,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0622B0660,2022-06-07 11:30:00,Field Dissolved Oxygen,9.83,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0622B0660,2022-06-07 11:30:00,Field Specific Conductance,472.4,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0622B0660,2022-06-07 11:30:00,Field Turbidity,2.65,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0622B0660,2022-06-07 11:30:00,Field Water Temperature,21.39,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0622B0660,2022-06-07 11:30:00,Field pH,8.61,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0722B0770,2022-07-13 11:14:00,Field Dissolved Oxygen,9.27,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0722B0770,2022-07-13 11:14:00,Field Specific Conductance,698,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0722B0770,2022-07-13 11:14:00,Field Turbidity,1.07,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0722B0770,2022-07-13 11:14:00,Field Water Temperature,22.84,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0722B0770,2022-07-13 11:14:00,Field pH,9.35,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0822B0876,2022-08-10 14:00:00,Field Dissolved Oxygen,11.52,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0822B0876,2022-08-10 14:00:00,Field Specific Conductance,542,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0822B0876,2022-08-10 14:00:00,Field Turbidity,0.61,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0822B0876,2022-08-10 14:00:00,Field Water Temperature,22.99,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0822B0876,2022-08-10 14:00:00,Field pH,9.35,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0922B0933,2022-09-08 08:46:00,Field Dissolved Oxygen,10.75,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0922B0933,2022-09-08 08:46:00,Field Specific Conductance,622,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0922B0933,2022-09-08 08:46:00,Field Turbidity,0.13,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0922B0933,2022-09-08 08:46:00,Field Water Temperature,25.09,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF0922B0933,2022-09-08 08:46:00,Field pH,9.66,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF1022B1133,2022-10-13 10:20:00,Field Dissolved Oxygen,9.65,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF1022B1133,2022-10-13 10:20:00,Field Specific Conductance,830,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF1022B1133,2022-10-13 10:20:00,Field Turbidity,0.35,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF1022B1133,2022-10-13 10:20:00,Field Water Temperature,19.32,Normal Sample
+Frank's Tract Mid Track - D19A,B9D80281359,CF1022B1133,2022-10-13 10:20:00,Field pH,8.43,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0122B0230,2022-01-26 09:58:00,Field Dissolved Oxygen,11.01,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0122B0230,2022-01-26 09:58:00,Field Specific Conductance,395.3,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0122B0230,2022-01-26 09:58:00,Field Turbidity,1.51,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0122B0230,2022-01-26 09:58:00,Field Water Temperature,9.65,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0122B0230,2022-01-26 09:58:00,Field pH,7.73,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0222B0289,2022-02-16 08:55:00,Field Dissolved Oxygen,10.36,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0222B0289,2022-02-16 08:55:00,Field Specific Conductance,357.6,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0222B0289,2022-02-16 08:55:00,Field Turbidity,1.88,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0222B0289,2022-02-16 08:55:00,Field Water Temperature,10.9,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0222B0289,2022-02-16 08:55:00,Field pH,7.69,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0322B0412,2022-03-23 08:00:00,Field Dissolved Oxygen,8.81,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0322B0412,2022-03-23 08:00:00,Field Specific Conductance,358.4,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0322B0412,2022-03-23 08:00:00,Field Turbidity,2.77,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0322B0412,2022-03-23 08:00:00,Field Water Temperature,16.517,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0322B0412,2022-03-23 08:00:00,Field pH,7.73,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0422B0512,2022-04-25 09:05:00,Field Dissolved Oxygen,9.46,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0422B0512,2022-04-25 09:05:00,Field Specific Conductance,328.1,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0422B0512,2022-04-25 09:05:00,Field Turbidity,0.5,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0422B0512,2022-04-25 09:05:00,Field Water Temperature,17.837,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0422B0512,2022-04-25 09:05:00,Field pH,8.22,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0622B0692,2022-06-16 11:00:00,Field Dissolved Oxygen,5.58,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0622B0692,2022-06-16 11:00:00,Field Specific Conductance,410.6,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0622B0692,2022-06-16 11:00:00,Field Turbidity,3.11,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0622B0692,2022-06-16 11:00:00,Field Water Temperature,23.379,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0622B0692,2022-06-16 11:00:00,Field pH,7.25,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0722B0781,2022-07-13 08:57:00,Field Dissolved Oxygen,5.14,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0722B0781,2022-07-13 08:57:00,Field Specific Conductance,632,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0722B0781,2022-07-13 08:57:00,Field Turbidity,0.44,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0722B0781,2022-07-13 08:57:00,Field Water Temperature,25.078,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0722B0781,2022-07-13 08:57:00,Field pH,7.35,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0822B0886,2022-08-16 09:49:00,Field Dissolved Oxygen,4.58,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0822B0886,2022-08-16 09:49:00,Field Specific Conductance,527,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0822B0886,2022-08-16 09:49:00,Field Turbidity,1.84,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0822B0886,2022-08-16 09:49:00,Field Water Temperature,25.671,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0822B0886,2022-08-16 09:49:00,Field pH,7.17,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0922B0969,2022-09-20 09:24:00,Field Dissolved Oxygen,5.8,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0922B0969,2022-09-20 09:24:00,Field Specific Conductance,509,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0922B0969,2022-09-20 09:24:00,Field Turbidity,1.44,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0922B0969,2022-09-20 09:24:00,Field Water Temperature,21.244,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF0922B0969,2022-09-20 09:24:00,Field pH,7.26,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF1022B1118,2022-10-13 10:08:00,Field Dissolved Oxygen,7.9,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF1022B1118,2022-10-13 10:08:00,Field Specific Conductance,600,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF1022B1118,2022-10-13 10:08:00,Field Turbidity,3.26,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF1022B1118,2022-10-13 10:08:00,Field Water Temperature,21.146,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF1022B1118,2022-10-13 10:08:00,Field pH,7.55,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF1122B1234,2022-11-22 11:55:00,Field Dissolved Oxygen,10.1,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF1122B1234,2022-11-22 11:55:00,Field Specific Conductance,703,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF1122B1234,2022-11-22 11:55:00,Field Turbidity,6.12,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF1122B1234,2022-11-22 11:55:00,Field Water Temperature,12.25,Normal Sample
+Rock Slough @ Contra Costa WD Fish Screen,B9522200,CF1122B1234,2022-11-22 11:55:00,Field pH,7.57,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0122B0161,2022-01-11 10:25:00,Field Dissolved Oxygen,9.12,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0122B0161,2022-01-11 10:25:00,Field Specific Conductance,481.1,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0122B0161,2022-01-11 10:25:00,Field Turbidity,5.53,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0122B0161,2022-01-11 10:25:00,Field Water Temperature,9.276,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0122B0161,2022-01-11 10:25:00,Field pH,7.49,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0222B0256,2022-02-08 10:04:00,Field Dissolved Oxygen,10.85,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0222B0256,2022-02-08 10:04:00,Field Specific Conductance,387.2,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0222B0256,2022-02-08 10:04:00,Field Turbidity,3.93,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0222B0256,2022-02-08 10:04:00,Field Water Temperature,10.228,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0222B0256,2022-02-08 10:04:00,Field pH,7.65,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0322B0334,2022-03-08 10:29:00,Field Dissolved Oxygen,9.96,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0322B0334,2022-03-08 10:29:00,Field Specific Conductance,458,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0322B0334,2022-03-08 10:29:00,Field Turbidity,2.63,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0322B0334,2022-03-08 10:29:00,Field Water Temperature,12.922,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0322B0334,2022-03-08 10:29:00,Field pH,7.7,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0422B0454,2022-04-12 10:35:00,Field Dissolved Oxygen,9.16,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0422B0454,2022-04-12 10:35:00,Field Specific Conductance,652,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0422B0454,2022-04-12 10:35:00,Field Turbidity,3.05,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0422B0454,2022-04-12 10:35:00,Field Water Temperature,16.695,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0422B0454,2022-04-12 10:35:00,Field pH,8.02,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0522B0596,2022-05-10 09:45:00,Field Dissolved Oxygen,9.37,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0522B0596,2022-05-10 09:45:00,Field Specific Conductance,409.4,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0522B0596,2022-05-10 09:45:00,Field Turbidity,1.71,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0522B0596,2022-05-10 09:45:00,Field Water Temperature,18.008,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0522B0596,2022-05-10 09:45:00,Field pH,8.15,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0622B0657,2022-06-06 09:17:00,Field Dissolved Oxygen,6.8,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0622B0657,2022-06-06 09:17:00,Field Specific Conductance,403.6,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0622B0657,2022-06-06 09:17:00,Field Turbidity,2.95,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0622B0657,2022-06-06 09:17:00,Field Water Temperature,22.14,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0622B0657,2022-06-06 09:17:00,Field pH,7.42,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0722B0760,2022-07-12 09:14:00,Field Dissolved Oxygen,6.58,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0722B0760,2022-07-12 09:14:00,Field Specific Conductance,583,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0722B0760,2022-07-12 09:14:00,Field Turbidity,3.92,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0722B0760,2022-07-12 09:14:00,Field Water Temperature,25.595,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0722B0760,2022-07-12 09:14:00,Field pH,7.43,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0822B0840,2022-08-09 10:35:00,Field Dissolved Oxygen,6.92,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0822B0840,2022-08-09 10:35:00,Field Specific Conductance,438.2,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0822B0840,2022-08-09 10:35:00,Field Turbidity,3.9,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0822B0840,2022-08-09 10:35:00,Field Water Temperature,24.56,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0822B0840,2022-08-09 10:35:00,Field pH,7.27,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0922B0953,2022-09-13 12:12:00,Field Dissolved Oxygen,7.07,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0922B0953,2022-09-13 12:12:00,Field Specific Conductance,439.9,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0922B0953,2022-09-13 12:12:00,Field Turbidity,5.38,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0922B0953,2022-09-13 12:12:00,Field Water Temperature,24.376,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF0922B0953,2022-09-13 12:12:00,Field pH,7.54,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF1122B1194,2022-11-08 11:27:00,Field Dissolved Oxygen,9.14,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF1122B1194,2022-11-08 11:27:00,Field Specific Conductance,512,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF1122B1194,2022-11-08 11:27:00,Field Turbidity,4.13,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF1122B1194,2022-11-08 11:27:00,Field Water Temperature,14.24,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF1122B1194,2022-11-08 11:27:00,Field pH,7.65,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF1222B1611,2022-12-13 10:41:00,Field Dissolved Oxygen,9.98,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF1222B1611,2022-12-13 10:41:00,Field Specific Conductance,635,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF1222B1611,2022-12-13 10:41:00,Field Turbidity,2.02,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF1222B1611,2022-12-13 10:41:00,Field Water Temperature,10.001,Normal Sample
+Old River Below Clifton Court Intake,B9D74971332,CF1222B1611,2022-12-13 10:41:00,Field pH,7.58,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0122B0180,2022-01-13 10:30:00,Field Dissolved Oxygen,10.62,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0122B0180,2022-01-13 10:30:00,Field Specific Conductance,176.8,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0122B0180,2022-01-13 10:30:00,Field Turbidity,6.75,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0122B0180,2022-01-13 10:30:00,Field Water Temperature,9.523,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0122B0180,2022-01-13 10:30:00,Field pH,7.63,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0222B0307,2022-02-17 10:27:00,Field Dissolved Oxygen,10.05,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0222B0307,2022-02-17 10:27:00,Field Specific Conductance,186.3,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0222B0307,2022-02-17 10:27:00,Field Turbidity,4.62,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0222B0307,2022-02-17 10:27:00,Field Water Temperature,12.35,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0222B0307,2022-02-17 10:27:00,Field pH,7.4,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0322B0403,2022-03-17 09:33:00,Field Dissolved Oxygen,9.85,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0322B0403,2022-03-17 09:33:00,Field Specific Conductance,159.1,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0322B0403,2022-03-17 09:33:00,Field Turbidity,2.99,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0322B0403,2022-03-17 09:33:00,Field Water Temperature,14.044,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0322B0403,2022-03-17 09:33:00,Field pH,7.5,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0422B0527,2022-04-28 09:50:00,Field Dissolved Oxygen,9.02,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0422B0527,2022-04-28 09:50:00,Field Specific Conductance,156.6,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0422B0527,2022-04-28 09:50:00,Field Turbidity,3.39,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0422B0527,2022-04-28 09:50:00,Field Water Temperature,17.318,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0422B0527,2022-04-28 09:50:00,Field pH,7.44,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0622B0677,2022-06-10 09:27:00,Field Dissolved Oxygen,8.1,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0622B0677,2022-06-10 09:27:00,Field Specific Conductance,131.5,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0622B0677,2022-06-10 09:27:00,Field Turbidity,2.71,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0622B0677,2022-06-10 09:27:00,Field Water Temperature,23.182,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0622B0677,2022-06-10 09:27:00,Field pH,7.48,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0722B0815,2022-07-28 09:58:00,Field Dissolved Oxygen,8.29,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0722B0815,2022-07-28 09:58:00,Field Specific Conductance,116.7,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0722B0815,2022-07-28 09:58:00,Field Turbidity,3.4,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0722B0815,2022-07-28 09:58:00,Field Water Temperature,23.105,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0722B0815,2022-07-28 09:58:00,Field pH,7.5,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0822B0898,2022-08-18 09:58:00,Field Dissolved Oxygen,8.09,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0822B0898,2022-08-18 09:58:00,Field Specific Conductance,149.6,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0822B0898,2022-08-18 09:58:00,Field Turbidity,2.47,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0822B0898,2022-08-18 09:58:00,Field Water Temperature,23.679,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0822B0898,2022-08-18 09:58:00,Field pH,7.69,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0922B0977,2022-09-20 09:28:00,Field Dissolved Oxygen,8.29,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0922B0977,2022-09-20 09:28:00,Field Specific Conductance,133.8,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0922B0977,2022-09-20 09:28:00,Field Turbidity,1.67,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0922B0977,2022-09-20 09:28:00,Field Water Temperature,21.082,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF0922B0977,2022-09-20 09:28:00,Field pH,7.57,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1022B1164,2022-10-20 09:18:00,Field Dissolved Oxygen,8.54,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1022B1164,2022-10-20 09:18:00,Field Specific Conductance,136.6,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1022B1164,2022-10-20 09:18:00,Field Turbidity,1.05,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1022B1164,2022-10-20 09:18:00,Field Water Temperature,19.69,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1022B1164,2022-10-20 09:18:00,Field pH,7.66,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1122B1230,2022-11-17 11:00:00,Field Dissolved Oxygen,10.42,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1122B1230,2022-11-17 11:00:00,Field Specific Conductance,159.4,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1122B1230,2022-11-17 11:00:00,Field Turbidity,1.64,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1122B1230,2022-11-17 11:00:00,Field Water Temperature,11.627,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1122B1230,2022-11-17 11:00:00,Field pH,7.74,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1222B1621,2022-12-20 11:13:00,Field Dissolved Oxygen,9.79,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1222B1621,2022-12-20 11:13:00,Field Specific Conductance,171.1,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1222B1621,2022-12-20 11:13:00,Field Turbidity,10.69,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1222B1621,2022-12-20 11:13:00,Field Water Temperature,8.465,Normal Sample
+Sacramento River Downstream of Isleton,B9D81051394,CF1222B1621,2022-12-20 11:13:00,Field pH,7.36,Normal Sample
+Steamboat Slough,B9S81131386,CF0122B0179,2022-01-13 09:58:00,Field Dissolved Oxygen,10.54,Normal Sample
+Steamboat Slough,B9S81131386,CF0122B0179,2022-01-13 09:58:00,Field Specific Conductance,193.9,Normal Sample
+Steamboat Slough,B9S81131386,CF0122B0179,2022-01-13 09:58:00,Field Turbidity,7.69,Normal Sample
+Steamboat Slough,B9S81131386,CF0122B0179,2022-01-13 09:58:00,Field Water Temperature,9.55,Normal Sample
+Steamboat Slough,B9S81131386,CF0122B0179,2022-01-13 09:58:00,Field pH,7.5,Normal Sample
+Steamboat Slough,B9S81131386,CF0222B0306,2022-02-17 09:57:00,Field Dissolved Oxygen,10.08,Normal Sample
+Steamboat Slough,B9S81131386,CF0222B0306,2022-02-17 09:57:00,Field Specific Conductance,190.3,Normal Sample
+Steamboat Slough,B9S81131386,CF0222B0306,2022-02-17 09:57:00,Field Turbidity,3.98,Normal Sample
+Steamboat Slough,B9S81131386,CF0222B0306,2022-02-17 09:57:00,Field Water Temperature,12.141,Normal Sample
+Steamboat Slough,B9S81131386,CF0222B0306,2022-02-17 09:57:00,Field pH,7.49,Normal Sample
+Steamboat Slough,B9S81131386,CF0322B0402,2022-03-17 09:05:00,Field Dissolved Oxygen,9.81,Normal Sample
+Steamboat Slough,B9S81131386,CF0322B0402,2022-03-17 09:05:00,Field Specific Conductance,173,Normal Sample
+Steamboat Slough,B9S81131386,CF0322B0402,2022-03-17 09:05:00,Field Turbidity,2.93,Normal Sample
+Steamboat Slough,B9S81131386,CF0322B0402,2022-03-17 09:05:00,Field Water Temperature,14.235,Normal Sample
+Steamboat Slough,B9S81131386,CF0322B0402,2022-03-17 09:05:00,Field pH,7.63,Normal Sample
+Steamboat Slough,B9S81131386,CF0422B0526,2022-04-28 10:19:00,Field Dissolved Oxygen,9.04,Normal Sample
+Steamboat Slough,B9S81131386,CF0422B0526,2022-04-28 10:19:00,Field Specific Conductance,162.7,Normal Sample
+Steamboat Slough,B9S81131386,CF0422B0526,2022-04-28 10:19:00,Field Turbidity,3.06,Normal Sample
+Steamboat Slough,B9S81131386,CF0422B0526,2022-04-28 10:19:00,Field Water Temperature,17.23,Normal Sample
+Steamboat Slough,B9S81131386,CF0422B0526,2022-04-28 10:19:00,Field pH,7.54,Normal Sample
+Steamboat Slough,B9S81131386,CF0622B0676,2022-06-10 08:56:00,Field Dissolved Oxygen,8.05,Normal Sample
+Steamboat Slough,B9S81131386,CF0622B0676,2022-06-10 08:56:00,Field Specific Conductance,142.9,Normal Sample
+Steamboat Slough,B9S81131386,CF0622B0676,2022-06-10 08:56:00,Field Turbidity,2.71,Normal Sample
+Steamboat Slough,B9S81131386,CF0622B0676,2022-06-10 08:56:00,Field Water Temperature,23.382,Normal Sample
+Steamboat Slough,B9S81131386,CF0622B0676,2022-06-10 08:56:00,Field pH,7.46,Normal Sample
+Steamboat Slough,B9S81131386,CF0722B0814,2022-07-28 09:27:00,Field Dissolved Oxygen,8.24,Normal Sample
+Steamboat Slough,B9S81131386,CF0722B0814,2022-07-28 09:27:00,Field Specific Conductance,114.8,Normal Sample
+Steamboat Slough,B9S81131386,CF0722B0814,2022-07-28 09:27:00,Field Turbidity,1.82,Normal Sample
+Steamboat Slough,B9S81131386,CF0722B0814,2022-07-28 09:27:00,Field Water Temperature,23.032,Normal Sample
+Steamboat Slough,B9S81131386,CF0722B0814,2022-07-28 09:27:00,Field pH,7.52,Normal Sample
+Steamboat Slough,B9S81131386,CF0822B0897,2022-08-18 09:14:00,Field Dissolved Oxygen,7.97,Normal Sample
+Steamboat Slough,B9S81131386,CF0822B0897,2022-08-18 09:14:00,Field Specific Conductance,123.7,Normal Sample
+Steamboat Slough,B9S81131386,CF0822B0897,2022-08-18 09:14:00,Field Turbidity,1.41,Normal Sample
+Steamboat Slough,B9S81131386,CF0822B0897,2022-08-18 09:14:00,Field Water Temperature,23.723,Normal Sample
+Steamboat Slough,B9S81131386,CF0822B0897,2022-08-18 09:14:00,Field pH,7.57,Normal Sample
+Steamboat Slough,B9S81131386,CF0922B0976,2022-09-20 09:01:00,Field Dissolved Oxygen,8.1,Normal Sample
+Steamboat Slough,B9S81131386,CF0922B0976,2022-09-20 09:01:00,Field Specific Conductance,123.6,Normal Sample
+Steamboat Slough,B9S81131386,CF0922B0976,2022-09-20 09:01:00,Field Turbidity,1.02,Normal Sample
+Steamboat Slough,B9S81131386,CF0922B0976,2022-09-20 09:01:00,Field Water Temperature,20.788,Normal Sample
+Steamboat Slough,B9S81131386,CF0922B0976,2022-09-20 09:01:00,Field pH,7.54,Normal Sample
+Steamboat Slough,B9S81131386,CF1022B1163,2022-10-20 08:45:00,Field Dissolved Oxygen,8.37,Normal Sample
+Steamboat Slough,B9S81131386,CF1022B1163,2022-10-20 08:45:00,Field Specific Conductance,141.2,Normal Sample
+Steamboat Slough,B9S81131386,CF1022B1163,2022-10-20 08:45:00,Field Turbidity,0.88,Normal Sample
+Steamboat Slough,B9S81131386,CF1022B1163,2022-10-20 08:45:00,Field Water Temperature,19.622,Normal Sample
+Steamboat Slough,B9S81131386,CF1022B1163,2022-10-20 08:45:00,Field pH,7.63,Normal Sample
+Steamboat Slough,B9S81131386,CF1122B1229,2022-11-17 10:30:00,Field Dissolved Oxygen,10.48,Normal Sample
+Steamboat Slough,B9S81131386,CF1122B1229,2022-11-17 10:30:00,Field Specific Conductance,157.2,Normal Sample
+Steamboat Slough,B9S81131386,CF1122B1229,2022-11-17 10:30:00,Field Turbidity,1.26,Normal Sample
+Steamboat Slough,B9S81131386,CF1122B1229,2022-11-17 10:30:00,Field Water Temperature,11.549,Normal Sample
+Steamboat Slough,B9S81131386,CF1122B1229,2022-11-17 10:30:00,Field pH,7.76,Normal Sample
+Steamboat Slough,B9S81131386,CF1222B1620,2022-12-20 10:29:00,Field Dissolved Oxygen,9.98,Normal Sample
+Steamboat Slough,B9S81131386,CF1222B1620,2022-12-20 10:29:00,Field Specific Conductance,177.3,Normal Sample
+Steamboat Slough,B9S81131386,CF1222B1620,2022-12-20 10:29:00,Field Turbidity,6.72,Normal Sample
+Steamboat Slough,B9S81131386,CF1222B1620,2022-12-20 10:29:00,Field Water Temperature,8.06,Normal Sample
+Steamboat Slough,B9S81131386,CF1222B1620,2022-12-20 10:29:00,Field pH,7.29,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0222B0237,2022-02-02 10:45:00,Field Dissolved Oxygen,10.9,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0222B0237,2022-02-02 10:45:00,Field Specific Conductance,601,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0222B0237,2022-02-02 10:45:00,Field Turbidity,3.46,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0222B0237,2022-02-02 10:45:00,Field Water Temperature,9.915,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0222B0237,2022-02-02 10:45:00,Field pH,7.82,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0322B0328,2022-03-08 12:50:00,Field Dissolved Oxygen,10.28,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0322B0328,2022-03-08 12:50:00,Field Specific Conductance,465.6,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0322B0328,2022-03-08 12:50:00,Field Turbidity,2.04,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0322B0328,2022-03-08 12:50:00,Field Water Temperature,13.515,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0322B0328,2022-03-08 12:50:00,Field pH,7.84,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0422B0429,2022-04-05 10:05:00,Field Dissolved Oxygen,8.85,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0422B0429,2022-04-05 10:05:00,Field Specific Conductance,435.9,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0422B0429,2022-04-05 10:05:00,Field Turbidity,2.64,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0422B0429,2022-04-05 10:05:00,Field Water Temperature,17.689,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0422B0429,2022-04-05 10:05:00,Field pH,7.6,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0522B0577,2022-05-04 10:17:00,Field Dissolved Oxygen,9.29,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0522B0577,2022-05-04 10:17:00,Field Specific Conductance,393.8,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0522B0577,2022-05-04 10:17:00,Field Turbidity,1.89,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0522B0577,2022-05-04 10:17:00,Field Water Temperature,18.655,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0522B0577,2022-05-04 10:17:00,Field pH,8.05,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0622B0642,2022-06-02 09:12:00,Field Dissolved Oxygen,7.41,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0622B0642,2022-06-02 09:12:00,Field Specific Conductance,386.1,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0622B0642,2022-06-02 09:12:00,Field Turbidity,2.64,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0622B0642,2022-06-02 09:12:00,Field Water Temperature,22.092,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0622B0642,2022-06-02 09:12:00,Field pH,7.57,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0722B0748,2022-07-05 11:46:00,Field Dissolved Oxygen,7.53,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0722B0748,2022-07-05 11:46:00,Field Specific Conductance,532,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0722B0748,2022-07-05 11:46:00,Field Turbidity,3.17,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0722B0748,2022-07-05 11:46:00,Field Water Temperature,23.911,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0722B0748,2022-07-05 11:46:00,Field pH,7.57,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0822B0825,2022-08-03 09:33:00,Field Dissolved Oxygen,6.63,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0822B0825,2022-08-03 09:33:00,Field Specific Conductance,476.6,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0822B0825,2022-08-03 09:33:00,Field Turbidity,3.41,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0822B0825,2022-08-03 09:33:00,Field Water Temperature,24.83,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0822B0825,2022-08-03 09:33:00,Field pH,7.26,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0922B0949,2022-09-13 11:43:00,Field Dissolved Oxygen,6.95,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0922B0949,2022-09-13 11:43:00,Field Specific Conductance,440.6,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0922B0949,2022-09-13 11:43:00,Field Turbidity,3.34,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0922B0949,2022-09-13 11:43:00,Field Water Temperature,24.057,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF0922B0949,2022-09-13 11:43:00,Field pH,7.5,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1022B1010,2022-10-05 09:46:00,Field Dissolved Oxygen,7.16,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1022B1010,2022-10-05 09:46:00,Field Specific Conductance,479.6,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1022B1010,2022-10-05 09:46:00,Field Turbidity,1.99,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1022B1010,2022-10-05 09:46:00,Field Water Temperature,21.969,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1022B1010,2022-10-05 09:46:00,Field pH,7.49,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1122B1175,2022-11-02 10:20:00,Field Dissolved Oxygen,8.99,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1122B1175,2022-11-02 10:20:00,Field Specific Conductance,814,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1122B1175,2022-11-02 10:20:00,Field Turbidity,0.61,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1122B1175,2022-11-02 10:20:00,Field Water Temperature,15.485,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1122B1175,2022-11-02 10:20:00,Field pH,7.85,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1222B1607,2022-12-13 12:13:00,Field Dissolved Oxygen,9.82,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1222B1607,2022-12-13 12:13:00,Field Specific Conductance,580,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1222B1607,2022-12-13 12:13:00,Field Turbidity,1.27,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1222B1607,2022-12-13 12:13:00,Field Water Temperature,10.24,Normal Sample
+Old River Downstream DMC Barrier,B9536500,CF1222B1607,2022-12-13 12:13:00,Field pH,7.59,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0122B0080,2022-01-05 13:05:00,Field Dissolved Oxygen,9.98,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0122B0080,2022-01-05 13:05:00,Field Specific Conductance,552,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0122B0080,2022-01-05 13:05:00,Field Turbidity,6.44,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0122B0080,2022-01-05 13:05:00,Field Water Temperature,9.003,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0122B0080,2022-01-05 13:05:00,Field pH,7.71,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0222B0236,2022-02-02 11:28:00,Field Dissolved Oxygen,10.89,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0222B0236,2022-02-02 11:28:00,Field Specific Conductance,572,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0222B0236,2022-02-02 11:28:00,Field Turbidity,4.07,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0222B0236,2022-02-02 11:28:00,Field Water Temperature,9.981,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0222B0236,2022-02-02 11:28:00,Field pH,7.69,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0322B0327,2022-03-08 09:58:00,Field Dissolved Oxygen,10.13,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0322B0327,2022-03-08 09:58:00,Field Specific Conductance,455.7,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0322B0327,2022-03-08 09:58:00,Field Turbidity,2.54,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0322B0327,2022-03-08 09:58:00,Field Water Temperature,12.97,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0322B0327,2022-03-08 09:58:00,Field pH,7.81,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0422B0428,2022-04-05 09:32:00,Field Dissolved Oxygen,8.67,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0422B0428,2022-04-05 09:32:00,Field Specific Conductance,432.3,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0422B0428,2022-04-05 09:32:00,Field Turbidity,2.97,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0422B0428,2022-04-05 09:32:00,Field Water Temperature,17.537,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0422B0428,2022-04-05 09:32:00,Field pH,7.72,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0522B0576,2022-05-04 08:15:00,Field Dissolved Oxygen,9.03,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0522B0576,2022-05-04 08:15:00,Field Specific Conductance,394.8,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0522B0576,2022-05-04 08:15:00,Field Turbidity,4.85,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0522B0576,2022-05-04 08:15:00,Field Water Temperature,18.292,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0522B0576,2022-05-04 08:15:00,Field pH,7.99,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0622B0641,2022-06-02 09:49:00,Field Dissolved Oxygen,7.27,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0622B0641,2022-06-02 09:49:00,Field Specific Conductance,384.5,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0622B0641,2022-06-02 09:49:00,Field Turbidity,2.79,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0622B0641,2022-06-02 09:49:00,Field Water Temperature,22.128,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0622B0641,2022-06-02 09:49:00,Field pH,7.51,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0722B0747,2022-07-05 12:20:00,Field Dissolved Oxygen,7.13,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0722B0747,2022-07-05 12:20:00,Field Specific Conductance,532,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0722B0747,2022-07-05 12:20:00,Field Turbidity,4.42,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0722B0747,2022-07-05 12:20:00,Field Water Temperature,23.987,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0722B0747,2022-07-05 12:20:00,Field pH,7.47,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0822B0824,2022-08-03 09:03:00,Field Dissolved Oxygen,6.83,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0822B0824,2022-08-03 09:03:00,Field Specific Conductance,456.5,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0822B0824,2022-08-03 09:03:00,Field Turbidity,5.1,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0822B0824,2022-08-03 09:03:00,Field Water Temperature,25.136,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0822B0824,2022-08-03 09:03:00,Field pH,7.24,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0922B0948,2022-09-13 10:10:00,Field Dissolved Oxygen,6.91,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0922B0948,2022-09-13 10:10:00,Field Specific Conductance,442.5,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0922B0948,2022-09-13 10:10:00,Field Turbidity,3.3,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0922B0948,2022-09-13 10:10:00,Field Water Temperature,24.115,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF0922B0948,2022-09-13 10:10:00,Field pH,7.52,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1022B1009,2022-10-05 09:12:00,Field Dissolved Oxygen,7.62,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1022B1009,2022-10-05 09:12:00,Field Specific Conductance,558,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1022B1009,2022-10-05 09:12:00,Field Turbidity,2.37,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1022B1009,2022-10-05 09:12:00,Field Water Temperature,21.876,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1022B1009,2022-10-05 09:12:00,Field pH,7.63,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1122B1174,2022-11-02 10:58:00,Field Dissolved Oxygen,9.24,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1122B1174,2022-11-02 10:58:00,Field Specific Conductance,288.5,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1122B1174,2022-11-02 10:58:00,Field Turbidity,1.2,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1122B1174,2022-11-02 10:58:00,Field Water Temperature,14.889,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1122B1174,2022-11-02 10:58:00,Field pH,7.71,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1222B1606,2022-12-13 10:13:00,Field Dissolved Oxygen,9.76,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1222B1606,2022-12-13 10:13:00,Field Specific Conductance,548,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1222B1606,2022-12-13 10:13:00,Field Turbidity,2.88,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1222B1606,2022-12-13 10:13:00,Field Water Temperature,10.148,Normal Sample
+Grant Line Canal near Old River,B9D72921327,CF1222B1606,2022-12-13 10:13:00,Field pH,7.58,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0122B0157,2022-01-11 11:40:00,Field Dissolved Oxygen,8.92,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0122B0157,2022-01-11 11:40:00,Field Specific Conductance,478.1,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0122B0157,2022-01-11 11:40:00,Field Turbidity,5.46,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0122B0157,2022-01-11 11:40:00,Field Water Temperature,9.434,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0122B0157,2022-01-11 11:40:00,Field pH,7.71,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0222B0252,2022-02-08 11:11:00,Field Dissolved Oxygen,10.62,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0222B0252,2022-02-08 11:11:00,Field Specific Conductance,380.9,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0222B0252,2022-02-08 11:11:00,Field Turbidity,3.97,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0222B0252,2022-02-08 11:11:00,Field Water Temperature,10.419,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0222B0252,2022-02-08 11:11:00,Field pH,7.49,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0322B0330,2022-03-08 11:29:00,Field Dissolved Oxygen,10.21,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0322B0330,2022-03-08 11:29:00,Field Specific Conductance,432.3,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0322B0330,2022-03-08 11:29:00,Field Turbidity,2.15,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0322B0330,2022-03-08 11:29:00,Field Water Temperature,12.98,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0322B0330,2022-03-08 11:29:00,Field pH,7.74,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0422B0450,2022-04-12 10:05:00,Field Dissolved Oxygen,9.35,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0422B0450,2022-04-12 10:05:00,Field Specific Conductance,432.6,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0422B0450,2022-04-12 10:05:00,Field Turbidity,2.72,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0422B0450,2022-04-12 10:05:00,Field Water Temperature,16.219,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0422B0450,2022-04-12 10:05:00,Field pH,7.88,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0522B0594,2022-05-10 11:12:00,Field Dissolved Oxygen,9.73,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0522B0594,2022-05-10 11:12:00,Field Specific Conductance,416.6,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0522B0594,2022-05-10 11:12:00,Field Turbidity,1.5,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0522B0594,2022-05-10 11:12:00,Field Water Temperature,17.492,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0522B0594,2022-05-10 11:12:00,Field pH,7.99,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0622B0655,2022-06-06 10:19:00,Field Dissolved Oxygen,7.42,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0622B0655,2022-06-06 10:19:00,Field Specific Conductance,379.7,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0622B0655,2022-06-06 10:19:00,Field Turbidity,2.08,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0622B0655,2022-06-06 10:19:00,Field Water Temperature,22.527,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0622B0655,2022-06-06 10:19:00,Field pH,7.49,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0722B0758,2022-07-12 10:30:00,Field Dissolved Oxygen,6.6,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0722B0758,2022-07-12 10:30:00,Field Specific Conductance,545,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0722B0758,2022-07-12 10:30:00,Field Turbidity,3.11,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0722B0758,2022-07-12 10:30:00,Field Water Temperature,25.624,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0722B0758,2022-07-12 10:30:00,Field pH,7.42,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0822B0838,2022-08-09 09:25:00,Field Dissolved Oxygen,7.26,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0822B0838,2022-08-09 09:25:00,Field Specific Conductance,390.4,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0822B0838,2022-08-09 09:25:00,Field Turbidity,3.9,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0822B0838,2022-08-09 09:25:00,Field Water Temperature,24.137,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0822B0838,2022-08-09 09:25:00,Field pH,7.3,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0922B0951,2022-09-13 13:17:00,Field Dissolved Oxygen,7.61,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0922B0951,2022-09-13 13:17:00,Field Specific Conductance,394.5,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0922B0951,2022-09-13 13:17:00,Field Turbidity,3.56,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0922B0951,2022-09-13 13:17:00,Field Water Temperature,23.962,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF0922B0951,2022-09-13 13:17:00,Field pH,7.65,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF1122B1192,2022-11-08 10:33:00,Field Dissolved Oxygen,9.33,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF1122B1192,2022-11-08 10:33:00,Field Specific Conductance,558,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF1122B1192,2022-11-08 10:33:00,Field Turbidity,1.54,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF1122B1192,2022-11-08 10:33:00,Field Water Temperature,14.209,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF1122B1192,2022-11-08 10:33:00,Field pH,7.7,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF1222B1609,2022-12-13 11:36:00,Field Dissolved Oxygen,10.5,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF1222B1609,2022-12-13 11:36:00,Field Specific Conductance,611,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF1222B1609,2022-12-13 11:36:00,Field Turbidity,2.14,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF1222B1609,2022-12-13 11:36:00,Field Water Temperature,9.87,Normal Sample
+Victoria Canal near Byron,B9D75231318,CF1222B1609,2022-12-13 11:36:00,Field pH,7.66,Normal Sample
+Middle River at Howard Road,B9D75261230,CFG0903B0274,2003-09-30 09:30:00,Field Specific Conductance,437.1,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0122B0167,2022-01-12 12:02:00,Field Dissolved Oxygen,9.81,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0122B0167,2022-01-12 12:02:00,Field Specific Conductance,1667,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0122B0167,2022-01-12 12:02:00,Field Turbidity,14,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0122B0167,2022-01-12 12:02:00,Field Water Temperature,10.448,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0122B0167,2022-01-12 12:02:00,Field pH,8,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0122B0223,2022-01-25 10:34:00,Field Dissolved Oxygen,12.88,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0122B0223,2022-01-25 10:34:00,Field Specific Conductance,1500,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0122B0223,2022-01-25 10:34:00,Field Turbidity,8.52,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0122B0223,2022-01-25 10:34:00,Field Water Temperature,10.326,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0122B0223,2022-01-25 10:34:00,Field pH,8.34,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0222B0299,2022-02-16 14:03:00,Field Dissolved Oxygen,9.51,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0222B0299,2022-02-16 14:03:00,Field Specific Conductance,750,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0222B0299,2022-02-16 14:03:00,Field Turbidity,14.99,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0222B0299,2022-02-16 14:03:00,Field Water Temperature,12.637,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0222B0299,2022-02-16 14:03:00,Field pH,7.71,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0322B0395,2022-03-16 11:18:00,Field Dissolved Oxygen,7.33,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0322B0395,2022-03-16 11:18:00,Field Specific Conductance,978,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0322B0395,2022-03-16 11:18:00,Field Turbidity,22.42,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0322B0395,2022-03-16 11:18:00,Field Water Temperature,15.6,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0322B0395,2022-03-16 11:18:00,Field pH,7.51,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0422B0507,2022-04-20 09:46:00,Field Dissolved Oxygen,8.42,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0422B0507,2022-04-20 09:46:00,Field Specific Conductance,701,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0422B0507,2022-04-20 09:46:00,Field Turbidity,1.79,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0422B0507,2022-04-20 09:46:00,Field Water Temperature,18.343,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0422B0507,2022-04-20 09:46:00,Field pH,7.77,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0522B0621,2022-05-18 11:20:00,Field Dissolved Oxygen,8.71,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0522B0621,2022-05-18 11:20:00,Field Specific Conductance,459.8,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0522B0621,2022-05-18 11:20:00,Field Turbidity,4.58,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0522B0621,2022-05-18 11:20:00,Field Water Temperature,21.277,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0522B0621,2022-05-18 11:20:00,Field pH,7.83,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0622B0688,2022-06-15 13:35:00,Field Dissolved Oxygen,8.84,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0622B0688,2022-06-15 13:35:00,Field Specific Conductance,436.3,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0622B0688,2022-06-15 13:35:00,Field Turbidity,19,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0622B0688,2022-06-15 13:35:00,Field Water Temperature,24.115,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0622B0688,2022-06-15 13:35:00,Field pH,8,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0722B0793,2022-07-21 12:15:00,Field Dissolved Oxygen,7.14,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0722B0793,2022-07-21 12:15:00,Field Specific Conductance,957,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0722B0793,2022-07-21 12:15:00,Field Turbidity,5.05,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0722B0793,2022-07-21 12:15:00,Field Water Temperature,25.475,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0722B0793,2022-07-21 12:15:00,Field pH,7.56,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0822B0893,2022-08-17 09:41:00,Field Dissolved Oxygen,7.14,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0822B0893,2022-08-17 09:41:00,Field Specific Conductance,1041,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0822B0893,2022-08-17 09:41:00,Field Turbidity,20.4,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0822B0893,2022-08-17 09:41:00,Field Water Temperature,25.93,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0822B0893,2022-08-17 09:41:00,Field pH,7.69,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0922B0981,2022-09-21 09:45:00,Field Dissolved Oxygen,6.55,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0922B0981,2022-09-21 09:45:00,Field Specific Conductance,1204,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0922B0981,2022-09-21 09:45:00,Field Turbidity,6.8,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0922B0981,2022-09-21 09:45:00,Field Water Temperature,21.657,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF0922B0981,2022-09-21 09:45:00,Field pH,7.59,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF1022B1159,2022-10-19 09:35:00,Field Dissolved Oxygen,7.08,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF1022B1159,2022-10-19 09:35:00,Field Specific Conductance,1168,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF1022B1159,2022-10-19 09:35:00,Field Turbidity,11.1,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF1022B1159,2022-10-19 09:35:00,Field Water Temperature,19.47,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF1022B1159,2022-10-19 09:35:00,Field pH,7.79,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF1122B1225,2022-11-16 10:47:00,Field Dissolved Oxygen,9.58,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF1122B1225,2022-11-16 10:47:00,Field Specific Conductance,1476,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF1122B1225,2022-11-16 10:47:00,Field Turbidity,5.16,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF1122B1225,2022-11-16 10:47:00,Field Water Temperature,10.75,Normal Sample
+Sugar Cut downstream of Tom Paine Slough,B9D74761253,CF1122B1225,2022-11-16 10:47:00,Field pH,7.69,Normal Sample
+Paradise Cut,B9D74811247,CF0122B0166,2022-01-12 11:43:00,Field Dissolved Oxygen,9.89,Normal Sample
+Paradise Cut,B9D74811247,CF0122B0166,2022-01-12 11:43:00,Field Specific Conductance,821,Normal Sample
+Paradise Cut,B9D74811247,CF0122B0166,2022-01-12 11:43:00,Field Turbidity,2.79,Normal Sample
+Paradise Cut,B9D74811247,CF0122B0166,2022-01-12 11:43:00,Field Water Temperature,10.45,Normal Sample
+Paradise Cut,B9D74811247,CF0122B0166,2022-01-12 11:43:00,Field pH,7.93,Normal Sample
+Paradise Cut,B9D74811247,CF0122B0222,2022-01-25 11:20:00,Field Dissolved Oxygen,11.22,Normal Sample
+Paradise Cut,B9D74811247,CF0122B0222,2022-01-25 11:20:00,Field Specific Conductance,778,Normal Sample
+Paradise Cut,B9D74811247,CF0122B0222,2022-01-25 11:20:00,Field Turbidity,2.14,Normal Sample
+Paradise Cut,B9D74811247,CF0122B0222,2022-01-25 11:20:00,Field Water Temperature,10.93,Normal Sample
+Paradise Cut,B9D74811247,CF0122B0222,2022-01-25 11:20:00,Field pH,7.96,Normal Sample
+Paradise Cut,B9D74811247,CF0222B0298,2022-02-16 12:48:00,Field Dissolved Oxygen,10.07,Normal Sample
+Paradise Cut,B9D74811247,CF0222B0298,2022-02-16 12:48:00,Field Specific Conductance,648,Normal Sample
+Paradise Cut,B9D74811247,CF0222B0298,2022-02-16 12:48:00,Field Turbidity,3.05,Normal Sample
+Paradise Cut,B9D74811247,CF0222B0298,2022-02-16 12:48:00,Field Water Temperature,12.056,Normal Sample
+Paradise Cut,B9D74811247,CF0222B0298,2022-02-16 12:48:00,Field pH,7.66,Normal Sample
+Paradise Cut,B9D74811247,CF0322B0394,2022-03-16 10:46:00,Field Dissolved Oxygen,7.97,Normal Sample
+Paradise Cut,B9D74811247,CF0322B0394,2022-03-16 10:46:00,Field Specific Conductance,993,Normal Sample
+Paradise Cut,B9D74811247,CF0322B0394,2022-03-16 10:46:00,Field Turbidity,3.24,Normal Sample
+Paradise Cut,B9D74811247,CF0322B0394,2022-03-16 10:46:00,Field Water Temperature,15.69,Normal Sample
+Paradise Cut,B9D74811247,CF0322B0394,2022-03-16 10:46:00,Field pH,7.54,Normal Sample
+Paradise Cut,B9D74811247,CF0422B0506,2022-04-20 10:14:00,Field Dissolved Oxygen,8.23,Normal Sample
+Paradise Cut,B9D74811247,CF0422B0506,2022-04-20 10:14:00,Field Specific Conductance,662,Normal Sample
+Paradise Cut,B9D74811247,CF0422B0506,2022-04-20 10:14:00,Field Turbidity,1.61,Normal Sample
+Paradise Cut,B9D74811247,CF0422B0506,2022-04-20 10:14:00,Field Water Temperature,18.76,Normal Sample
+Paradise Cut,B9D74811247,CF0422B0506,2022-04-20 10:14:00,Field pH,7.7,Normal Sample
+Paradise Cut,B9D74811247,CF0522B0620,2022-05-18 10:31:00,Field Dissolved Oxygen,8.4,Normal Sample
+Paradise Cut,B9D74811247,CF0522B0620,2022-05-18 10:31:00,Field Specific Conductance,455.7,Normal Sample
+Paradise Cut,B9D74811247,CF0522B0620,2022-05-18 10:31:00,Field Turbidity,1.89,Normal Sample
+Paradise Cut,B9D74811247,CF0522B0620,2022-05-18 10:31:00,Field Water Temperature,20.87,Normal Sample
+Paradise Cut,B9D74811247,CF0522B0620,2022-05-18 10:31:00,Field pH,7.76,Normal Sample
+Paradise Cut,B9D74811247,CF0622B0687,2022-06-15 12:45:00,Field Dissolved Oxygen,7.11,Normal Sample
+Paradise Cut,B9D74811247,CF0622B0687,2022-06-15 12:45:00,Field Specific Conductance,532,Normal Sample
+Paradise Cut,B9D74811247,CF0622B0687,2022-06-15 12:45:00,Field Turbidity,4.24,Normal Sample
+Paradise Cut,B9D74811247,CF0622B0687,2022-06-15 12:45:00,Field Water Temperature,24.19,Normal Sample
+Paradise Cut,B9D74811247,CF0622B0687,2022-06-15 12:45:00,Field pH,7.5,Normal Sample
+Paradise Cut,B9D74811247,CF0722B0792,2022-07-21 13:58:00,Field Dissolved Oxygen,7.25,Normal Sample
+Paradise Cut,B9D74811247,CF0722B0792,2022-07-21 13:58:00,Field Specific Conductance,1153,Normal Sample
+Paradise Cut,B9D74811247,CF0722B0792,2022-07-21 13:58:00,Field Turbidity,2.38,Normal Sample
+Paradise Cut,B9D74811247,CF0722B0792,2022-07-21 13:58:00,Field Water Temperature,27.315,Normal Sample
+Paradise Cut,B9D74811247,CF0722B0792,2022-07-21 13:58:00,Field pH,7.61,Normal Sample
+Paradise Cut,B9D74811247,CF0822B0892,2022-08-17 10:05:00,Field Dissolved Oxygen,9.22,Normal Sample
+Paradise Cut,B9D74811247,CF0822B0892,2022-08-17 10:05:00,Field Specific Conductance,1533,Normal Sample
+Paradise Cut,B9D74811247,CF0822B0892,2022-08-17 10:05:00,Field Turbidity,10.16,Normal Sample
+Paradise Cut,B9D74811247,CF0822B0892,2022-08-17 10:05:00,Field Water Temperature,25.81,Normal Sample
+Paradise Cut,B9D74811247,CF0822B0892,2022-08-17 10:05:00,Field pH,7.89,Normal Sample
+Paradise Cut,B9D74811247,CF0922B0980,2022-09-21 10:28:00,Field Dissolved Oxygen,7.19,Normal Sample
+Paradise Cut,B9D74811247,CF0922B0980,2022-09-21 10:28:00,Field Specific Conductance,1549,Normal Sample
+Paradise Cut,B9D74811247,CF0922B0980,2022-09-21 10:28:00,Field Turbidity,10.02,Normal Sample
+Paradise Cut,B9D74811247,CF0922B0980,2022-09-21 10:28:00,Field Water Temperature,21.31,Normal Sample
+Paradise Cut,B9D74811247,CF0922B0980,2022-09-21 10:28:00,Field pH,7.74,Normal Sample
+Paradise Cut,B9D74811247,CF1022B1158,2022-10-19 10:03:00,Field Dissolved Oxygen,7.46,Normal Sample
+Paradise Cut,B9D74811247,CF1022B1158,2022-10-19 10:03:00,Field Specific Conductance,1382,Normal Sample
+Paradise Cut,B9D74811247,CF1022B1158,2022-10-19 10:03:00,Field Turbidity,7.53,Normal Sample
+Paradise Cut,B9D74811247,CF1022B1158,2022-10-19 10:03:00,Field Water Temperature,19.62,Normal Sample
+Paradise Cut,B9D74811247,CF1022B1158,2022-10-19 10:03:00,Field pH,7.74,Normal Sample
+Paradise Cut,B9D74811247,CF1122B1224,2022-11-16 11:30:00,Field Dissolved Oxygen,8.75,Normal Sample
+Paradise Cut,B9D74811247,CF1122B1224,2022-11-16 11:30:00,Field Specific Conductance,1281,Normal Sample
+Paradise Cut,B9D74811247,CF1122B1224,2022-11-16 11:30:00,Field Turbidity,13.3,Normal Sample
+Paradise Cut,B9D74811247,CF1122B1224,2022-11-16 11:30:00,Field Water Temperature,11.14,Normal Sample
+Paradise Cut,B9D74811247,CF1122B1224,2022-11-16 11:30:00,Field pH,7.67,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0122B0082,2022-01-05 10:55:00,Field Dissolved Oxygen,8.6,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0122B0082,2022-01-05 10:55:00,Field Specific Conductance,817,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0122B0082,2022-01-05 10:55:00,Field Turbidity,7.12,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0122B0082,2022-01-05 10:55:00,Field Water Temperature,8.925,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0122B0082,2022-01-05 10:55:00,Field pH,7.85,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0222B0238,2022-02-02 10:16:00,Field Dissolved Oxygen,11.45,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0222B0238,2022-02-02 10:16:00,Field Specific Conductance,967,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0222B0238,2022-02-02 10:16:00,Field Turbidity,3.05,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0222B0238,2022-02-02 10:16:00,Field Water Temperature,9.585,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0222B0238,2022-02-02 10:16:00,Field pH,8.18,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0322B0329,2022-03-08 12:20:00,Field Dissolved Oxygen,10.75,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0322B0329,2022-03-08 12:20:00,Field Specific Conductance,585,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0322B0329,2022-03-08 12:20:00,Field Turbidity,1.16,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0322B0329,2022-03-08 12:20:00,Field Water Temperature,13.856,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0322B0329,2022-03-08 12:20:00,Field pH,8.01,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0422B0430,2022-04-05 10:32:00,Field Dissolved Oxygen,8.98,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0422B0430,2022-04-05 10:32:00,Field Specific Conductance,734,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0422B0430,2022-04-05 10:32:00,Field Turbidity,1.9,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0422B0430,2022-04-05 10:32:00,Field Water Temperature,17.643,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0422B0430,2022-04-05 10:32:00,Field pH,7.88,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0522B0578,2022-05-04 09:41:00,Field Dissolved Oxygen,9.18,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0522B0578,2022-05-04 09:41:00,Field Specific Conductance,383.7,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0522B0578,2022-05-04 09:41:00,Field Turbidity,2.1,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0522B0578,2022-05-04 09:41:00,Field Water Temperature,18.347,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0522B0578,2022-05-04 09:41:00,Field pH,8.03,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0622B0643,2022-06-02 08:31:00,Field Dissolved Oxygen,7.4,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0622B0643,2022-06-02 08:31:00,Field Specific Conductance,441,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0622B0643,2022-06-02 08:31:00,Field Turbidity,2.19,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0622B0643,2022-06-02 08:31:00,Field Water Temperature,21.285,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0622B0643,2022-06-02 08:31:00,Field pH,7.66,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0722B0749,2022-07-05 11:02:00,Field Dissolved Oxygen,8.03,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0722B0749,2022-07-05 11:02:00,Field Specific Conductance,528,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0722B0749,2022-07-05 11:02:00,Field Turbidity,3.85,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0722B0749,2022-07-05 11:02:00,Field Water Temperature,22.813,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0722B0749,2022-07-05 11:02:00,Field pH,7.91,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0822B0826,2022-08-03 10:05:00,Field Dissolved Oxygen,6.35,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0822B0826,2022-08-03 10:05:00,Field Specific Conductance,498.9,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0822B0826,2022-08-03 10:05:00,Field Turbidity,3.33,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0822B0826,2022-08-03 10:05:00,Field Water Temperature,24.337,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0822B0826,2022-08-03 10:05:00,Field pH,7.33,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0922B0950,2022-09-13 11:03:00,Field Dissolved Oxygen,7.18,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0922B0950,2022-09-13 11:03:00,Field Specific Conductance,469,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0922B0950,2022-09-13 11:03:00,Field Turbidity,5.63,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0922B0950,2022-09-13 11:03:00,Field Water Temperature,23.07,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF0922B0950,2022-09-13 11:03:00,Field pH,7.59,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1022B1011,2022-10-05 10:18:00,Field Dissolved Oxygen,6.98,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1022B1011,2022-10-05 10:18:00,Field Specific Conductance,523,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1022B1011,2022-10-05 10:18:00,Field Turbidity,2.74,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1022B1011,2022-10-05 10:18:00,Field Water Temperature,21.575,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1022B1011,2022-10-05 10:18:00,Field pH,7.48,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1122B1176,2022-11-02 09:50:00,Field Dissolved Oxygen,8.55,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1122B1176,2022-11-02 09:50:00,Field Specific Conductance,987,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1122B1176,2022-11-02 09:50:00,Field Turbidity,1.04,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1122B1176,2022-11-02 09:50:00,Field Water Temperature,14.949,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1122B1176,2022-11-02 09:50:00,Field pH,7.76,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1222B1608,2022-12-13 12:41:00,Field Dissolved Oxygen,9.65,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1222B1608,2022-12-13 12:41:00,Field Specific Conductance,846,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1222B1608,2022-12-13 12:41:00,Field Turbidity,1.5,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1222B1608,2022-12-13 12:41:00,Field Water Temperature,10.04,Normal Sample
+Old River Upstream of Mountain House Creek,B9537000,CF1222B1608,2022-12-13 12:41:00,Field pH,7.71,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0122B0178,2022-01-13 11:02:00,Field Dissolved Oxygen,10.68,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0122B0178,2022-01-13 11:02:00,Field Specific Conductance,189.5,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0122B0178,2022-01-13 11:02:00,Field Turbidity,6.62,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0122B0178,2022-01-13 11:02:00,Field Water Temperature,9.74,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0122B0178,2022-01-13 11:02:00,Field pH,7.65,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0222B0305,2022-02-17 11:01:00,Field Dissolved Oxygen,9.95,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0222B0305,2022-02-17 11:01:00,Field Specific Conductance,175,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0222B0305,2022-02-17 11:01:00,Field Turbidity,4.91,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0222B0305,2022-02-17 11:01:00,Field Water Temperature,12.146,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0222B0305,2022-02-17 11:01:00,Field pH,7.33,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0322B0401,2022-03-17 10:04:00,Field Dissolved Oxygen,9.63,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0322B0401,2022-03-17 10:04:00,Field Specific Conductance,150.4,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0322B0401,2022-03-17 10:04:00,Field Turbidity,3.46,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0322B0401,2022-03-17 10:04:00,Field Water Temperature,14.22,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0322B0401,2022-03-17 10:04:00,Field pH,7.51,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0422B0525,2022-04-28 09:19:00,Field Dissolved Oxygen,8.94,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0422B0525,2022-04-28 09:19:00,Field Specific Conductance,159.5,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0422B0525,2022-04-28 09:19:00,Field Turbidity,3.37,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0422B0525,2022-04-28 09:19:00,Field Water Temperature,17.465,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0422B0525,2022-04-28 09:19:00,Field pH,7.51,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0622B0675,2022-06-10 09:59:00,Field Dissolved Oxygen,8.1,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0622B0675,2022-06-10 09:59:00,Field Specific Conductance,135.2,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0622B0675,2022-06-10 09:59:00,Field Turbidity,2.72,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0622B0675,2022-06-10 09:59:00,Field Water Temperature,23.48,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0622B0675,2022-06-10 09:59:00,Field pH,7.53,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0722B0813,2022-07-28 10:32:00,Field Dissolved Oxygen,7.94,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0722B0813,2022-07-28 10:32:00,Field Specific Conductance,109.2,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0722B0813,2022-07-28 10:32:00,Field Turbidity,1.81,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0722B0813,2022-07-28 10:32:00,Field Water Temperature,22.966,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0722B0813,2022-07-28 10:32:00,Field pH,7.4,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0822B0896,2022-08-18 10:42:00,Field Dissolved Oxygen,8.19,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0822B0896,2022-08-18 10:42:00,Field Specific Conductance,123.3,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0822B0896,2022-08-18 10:42:00,Field Turbidity,1.84,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0822B0896,2022-08-18 10:42:00,Field Water Temperature,23.792,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0822B0896,2022-08-18 10:42:00,Field pH,7.66,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0922B0975,2022-09-20 10:10:00,Field Dissolved Oxygen,8.1,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0922B0975,2022-09-20 10:10:00,Field Specific Conductance,124.1,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0922B0975,2022-09-20 10:10:00,Field Turbidity,1.78,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0922B0975,2022-09-20 10:10:00,Field Water Temperature,20.821,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF0922B0975,2022-09-20 10:10:00,Field pH,7.46,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1022B1162,2022-10-20 09:57:00,Field Dissolved Oxygen,8.39,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1022B1162,2022-10-20 09:57:00,Field Specific Conductance,139.1,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1022B1162,2022-10-20 09:57:00,Field Turbidity,0.92,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1022B1162,2022-10-20 09:57:00,Field Water Temperature,19.641,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1022B1162,2022-10-20 09:57:00,Field pH,7.6,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1122B1228,2022-11-17 11:46:00,Field Dissolved Oxygen,10.89,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1122B1228,2022-11-17 11:46:00,Field Specific Conductance,162.5,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1122B1228,2022-11-17 11:46:00,Field Turbidity,1.4,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1122B1228,2022-11-17 11:46:00,Field Water Temperature,11.84,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1122B1228,2022-11-17 11:46:00,Field pH,7.95,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1222B1619,2022-12-20 11:55:00,Field Dissolved Oxygen,9.91,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1222B1619,2022-12-20 11:55:00,Field Specific Conductance,180.7,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1222B1619,2022-12-20 11:55:00,Field Turbidity,10.64,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1222B1619,2022-12-20 11:55:00,Field Water Temperature,8.42,Normal Sample
+Miner Slough near Sacramento River,B9S81421400,CF1222B1619,2022-12-20 11:55:00,Field pH,7.38,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0122B0110,2022-01-03 13:31:00,Field Dissolved Oxygen,7.75,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0122B0110,2022-01-03 13:31:00,Field Specific Conductance,583,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0122B0110,2022-01-03 13:31:00,Field Turbidity,30.71,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0122B0110,2022-01-03 13:31:00,Field Water Temperature,6.902,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0122B0110,2022-01-03 13:31:00,Field pH,7.71,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0222B0276,2022-02-14 12:34:00,Field Dissolved Oxygen,6.77,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0222B0276,2022-02-14 12:34:00,Field Specific Conductance,709,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0222B0276,2022-02-14 12:34:00,Field Turbidity,20.93,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0222B0276,2022-02-14 12:34:00,Field Water Temperature,14.012,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0222B0276,2022-02-14 12:34:00,Field pH,7.62,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0322B0350,2022-03-14 14:57:00,Field Dissolved Oxygen,10.96,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0322B0350,2022-03-14 14:57:00,Field Specific Conductance,853,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0322B0350,2022-03-14 14:57:00,Field Turbidity,16.35,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0322B0350,2022-03-14 14:57:00,Field Water Temperature,16.054,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0322B0350,2022-03-14 14:57:00,Field pH,8.17,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0422B0425,2022-04-04 10:43:00,Field Dissolved Oxygen,5.66,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0422B0425,2022-04-04 10:43:00,Field Specific Conductance,734,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0422B0425,2022-04-04 10:43:00,Field Turbidity,9.24,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0422B0425,2022-04-04 10:43:00,Field Water Temperature,17.034,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0422B0425,2022-04-04 10:43:00,Field pH,7.67,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0522B0551,2022-05-02 10:25:00,Field Dissolved Oxygen,6.4,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0522B0551,2022-05-02 10:25:00,Field Specific Conductance,601,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0522B0551,2022-05-02 10:25:00,Field Turbidity,26.29,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0522B0551,2022-05-02 10:25:00,Field Water Temperature,19.108,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0522B0551,2022-05-02 10:25:00,Field pH,7.83,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0622B0649,2022-06-06 10:44:00,Field Dissolved Oxygen,6.41,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0622B0649,2022-06-06 10:44:00,Field Specific Conductance,317.2,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0622B0649,2022-06-06 10:44:00,Field Turbidity,26.4,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0622B0649,2022-06-06 10:44:00,Field Water Temperature,22.079,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0622B0649,2022-06-06 10:44:00,Field pH,7.8,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0722B0744,2022-07-05 12:56:00,Field Dissolved Oxygen,7.88,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0722B0744,2022-07-05 12:56:00,Field Specific Conductance,251.8,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0722B0744,2022-07-05 12:56:00,Field Turbidity,21.51,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0722B0744,2022-07-05 12:56:00,Field Water Temperature,24.435,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0722B0744,2022-07-05 12:56:00,Field pH,8.09,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0822B0832,2022-08-08 11:52:00,Field Dissolved Oxygen,7.07,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0822B0832,2022-08-08 11:52:00,Field Specific Conductance,195.9,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0822B0832,2022-08-08 11:52:00,Field Turbidity,15.26,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0822B0832,2022-08-08 11:52:00,Field Water Temperature,23.593,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0822B0832,2022-08-08 11:52:00,Field pH,7.69,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0922B0921,2022-09-06 08:28:00,Field Dissolved Oxygen,6.68,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0922B0921,2022-09-06 08:28:00,Field Specific Conductance,221.3,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0922B0921,2022-09-06 08:28:00,Field Turbidity,14.46,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0922B0921,2022-09-06 08:28:00,Field Water Temperature,25.099,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF0922B0921,2022-09-06 08:28:00,Field pH,7.56,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1022B0998,2022-10-03 11:17:00,Field Dissolved Oxygen,7.12,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1022B0998,2022-10-03 11:17:00,Field Specific Conductance,236.8,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1022B0998,2022-10-03 11:17:00,Field Turbidity,21.08,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1022B0998,2022-10-03 11:17:00,Field Water Temperature,20.683,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1022B0998,2022-10-03 11:17:00,Field pH,7.57,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1122B1186,2022-11-07 11:17:00,Field Dissolved Oxygen,7.68,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1122B1186,2022-11-07 11:17:00,Field Specific Conductance,321.2,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1122B1186,2022-11-07 11:17:00,Field Turbidity,19.04,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1122B1186,2022-11-07 11:17:00,Field Water Temperature,13.376,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1122B1186,2022-11-07 11:17:00,Field pH,7.46,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1122B1240,2022-11-28 14:13:00,Field Dissolved Oxygen,9.84,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1122B1240,2022-11-28 14:13:00,Field Specific Conductance,436.8,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1122B1240,2022-11-28 14:13:00,Field Turbidity,4.67,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1122B1240,2022-11-28 14:13:00,Field Water Temperature,10.245,Normal Sample
+Yolo Bypass Toe Drain Below Lisbon Weir,B9D82851352,CF1122B1240,2022-11-28 14:13:00,Field pH,7.56,Normal Sample
diff --git a/data-raw/NCRO/qry_HabObs_StationNameStationCode_DeployEnd.xlsx b/data-raw/NCRO/qry_HabObs_StationNameStationCode_DeployEnd.xlsx
new file mode 100644
index 0000000..7986df5
Binary files /dev/null and b/data-raw/NCRO/qry_HabObs_StationNameStationCode_DeployEnd.xlsx differ
diff --git a/data/DOP.rda b/data/DOP.rda
new file mode 100644
index 0000000..9c47952
Binary files /dev/null and b/data/DOP.rda differ
diff --git a/data/NCRO.rda b/data/NCRO.rda
index 5963b3c..c54bc31 100644
Binary files a/data/NCRO.rda and b/data/NCRO.rda differ
diff --git a/inst/WORDLIST b/inst/WORDLIST
index a0d5669..074762b 100644
--- a/inst/WORDLIST
+++ b/inst/WORDLIST
@@ -25,6 +25,7 @@ DissOrthophos
DJFMP
doi
DOI
+DOP
Durand
Durkacz
DWR's
@@ -41,8 +42,10 @@ FNU
Frantzich
Hagen
https
+ICF
IEP
Interagency
+Kalmbach
KJN
Kjeldahl
Lesmeister
@@ -89,6 +92,7 @@ TQ
TotPhos
Townet
TownetFallMidwaterTrawl
+Trophic
TSS
UC
ucdavis
diff --git a/man/DOP.Rd b/man/DOP.Rd
new file mode 100644
index 0000000..340f189
--- /dev/null
+++ b/man/DOP.Rd
@@ -0,0 +1,43 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/data.R
+\docType{data}
+\encoding{UTF-8}
+\name{DOP}
+\alias{DOP}
+\title{Directed Outflow Project water quality data}
+\format{
+a tibble with 3,473 rows and 16 variables
+\describe{
+\item{Source}{Name of the source dataset.}
+\item{Station}{Station where sample was collected. Includes Station_Code
+and Habitat from the source dataset because multiple habitats are collected
+at each station.}
+\item{Latitude}{Latitude at start of zooplankton tow in decimal degrees.}
+\item{Longitude}{Longitude at start of zooplankton tow in decimal degrees.}
+\item{Field_coords}{Were lat/long coordinates collected in the field (TRUE), or do they represent the location of a fixed station (FALSE)?}
+\item{Date}{Date sample was collected.}
+\item{Datetime}{Date and time of sample collection.}
+\item{Depth}{Bottom depth at start of trawl (m).}
+\item{Secchi}{Secchi depth (cm).}
+\item{Temperature}{Temperature (°C) at surface.}
+\item{Salinity}{Salinity at surface.}
+\item{Conductivity}{Specific conductance (\eqn{\mu}S \ifelse{html}{\out{cm-1}}{\eqn{cm^{-1}}}) at surface.}
+\item{DissolvedOxygen}{Dissolved oxygen (mg/L) at surface.}
+\item{pH}{pH (dimensionless) at surface.}
+\item{TurbidityFNU}{Turbidity (FNU) at surface.}
+\item{Chlorophyll}{Chlorophyll-a concentration (\eqn{\mu}g \ifelse{html}{\out{L-1}}{\eqn{L^{-1}}}) at surface.}
+}
+}
+\usage{
+DOP
+}
+\description{
+Water quality data from the ICF/USBR Directed Outflow Project.
+}
+\details{
+More metadata and information on methods are available \href{https://portal.edirepository.org/nis/metadataviewer?packageid=edi.1187.4}{here}.
+}
+\seealso{
+\code{\link{wq}}
+}
+\keyword{datasets}
diff --git a/man/NCRO.Rd b/man/NCRO.Rd
index c9e123f..7d55421 100644
--- a/man/NCRO.Rd
+++ b/man/NCRO.Rd
@@ -6,7 +6,7 @@
\alias{NCRO}
\title{NCRO water quality data}
\format{
-a tibble with 10,250 rows and 49 variables
+a tibble with 10,652 rows and 49 variables
\describe{
\item{Source}{Name of the source dataset.}
\item{Station}{Station where sample was collected.}
diff --git a/man/wq.Rd b/man/wq.Rd
index 3f6c57c..4a49a1e 100644
--- a/man/wq.Rd
+++ b/man/wq.Rd
@@ -11,6 +11,7 @@ wq(Sources = NULL, Start_year = NULL, End_year = NULL)
Choices include "20mm" (20mm Survey, \code{\link{twentymm}}),
"Baystudy" (Bay Study, \code{\link{baystudy}}),
"DJFMP" (Delta Juvenile Fish Monitoring Program, \code{\link{DJFMP}}),
+"DOP" (Directed Outflow Project \code{\link{DOP}})),
"EDSM" (Enhanced Delta Smelt Monitoring, \code{\link{EDSM}}),
"EMP" (Environmental Monitoring Program, \code{\link{EMP}}),
"FMWT" (Fall Midwater Trawl, \code{\link{FMWT}}),
@@ -41,6 +42,7 @@ Data <- wq(
"20mm",
"Baystudy",
"DJFMP",
+ "DOP",
"EDSM",
"EMP",
"FMWT",
diff --git a/publication/data_objects/Delta_Integrated_WQ_metadata.csv b/publication/data_objects/Delta_Integrated_WQ_metadata.csv
index 52d0f92..c291bed 100644
--- a/publication/data_objects/Delta_Integrated_WQ_metadata.csv
+++ b/publication/data_objects/Delta_Integrated_WQ_metadata.csv
@@ -2,6 +2,7 @@ Survey,Abbreviation,Agency,Survey_focus,Start_year,Season,Frequency,Data_source,
20-mm Survey,20mm,CDFW,Fish,1995,Mar-Jul,2X monthly,https://portal.edirepository.org/nis/metadataviewer?packageid=edi.535.4,Surface bucket,NA
San Francisco Bay Study,Baystudy,CDFW,Fish,1980,All year,Monthly,https://filelib.wildlife.ca.gov/Public/BayStudy/Access_Database/,0 - 1 m,0.5 m
Delta Juvenile Fish Monitoring Program,DJFMP,USFWS,Fish,1976,All year,3X weekly,https://portal.edirepository.org/nis/metadataviewer?packageid=edi.244.9,0.3 m or bucket if choppy,NA
+Directed Outflow Project Lower Trophic Study,DOP,USBR/ICF,Zooplankton,2017,"Sep-Nov in 2017-2018, Apr-Nov in 2019-present","Every 2 weeks in 2017, Weekly in 2018-present",https://portal.edirepository.org/nis/metadataviewer?packageid=edi.1187.4,1 m,NA
Enhanced Delta Smelt Monitoring,EDSM,USFWS,Fish,2016,Jan-Mar & Jul-Dec,Weekly,https://portal.edirepository.org/nis/metadataviewer?packageid=edi.415.8,0.3 m or bucket if choppy,0.3 ? 0.6 m
Environmental Monitoring Program,EMP,DWR,Water quality,1975,All year,Monthly,https://portal.edirepository.org/nis/metadataviewer?packageid=edi.458.9,0.9 m,0.9 m
Fall Midwater Trawl,FMWT,CDFW,Fish,1967,Sep-Dec,Monthly,https://filelib.wildlife.ca.gov/Public/TownetFallMidwaterTrawl/FMWT%20Data/,Surface bucket,0.3 m
diff --git a/publication/metadata_templates/abstract.docx b/publication/metadata_templates/abstract.docx
index 8ac7ca9..5467d06 100644
Binary files a/publication/metadata_templates/abstract.docx and b/publication/metadata_templates/abstract.docx differ
diff --git a/publication/metadata_templates/catvars_Delta_Integrated_WQ_metadata.txt b/publication/metadata_templates/catvars_Delta_Integrated_WQ_metadata.txt
index 9f5b053..28d1c1e 100644
--- a/publication/metadata_templates/catvars_Delta_Integrated_WQ_metadata.txt
+++ b/publication/metadata_templates/catvars_Delta_Integrated_WQ_metadata.txt
@@ -3,7 +3,9 @@ Agency CDFW California Department of Fish and Wildlife
Agency DWR California Department of Water Resources
Agency UC Davis "University of California, Davis"
Agency USBR United States Bureau of Reclamation
+Agency USBR/ICF United States Bureau of Reclamation and ICF International Inc
Agency USFWS United States Fish and Wildlife Service
Agency USGS United States Geological Survey
Survey_focus Fish Survey focused primarily on monitoring fish
Survey_focus Water quality Survey focused primarily on monitoring water quality
+Survey_focus Zooplankton Survey focused primarily on monitoring zooplankton
diff --git a/publication/metadata_templates/methods.docx b/publication/metadata_templates/methods.docx
index 273fea8..c9646ac 100644
Binary files a/publication/metadata_templates/methods.docx and b/publication/metadata_templates/methods.docx differ
diff --git a/publication/metadata_templates/provenance.txt b/publication/metadata_templates/provenance.txt
index 9e94de4..66c66c1 100644
--- a/publication/metadata_templates/provenance.txt
+++ b/publication/metadata_templates/provenance.txt
@@ -8,6 +8,7 @@ edi.494.2 EDI
edi.233.3 EDI
edi.535.4 EDI
edi.534.4 EDI
+edi.1187.4 EDI
"USGS Measurements of Water Quality in San Francisco Bay (CA), 1969-2015 (ver. 3.0 June 2017)" Cloern E J creator United States Geological Survey This online link references a USGS data publication https://doi.org/10.5066/F7TQ5ZPR
"USGS Measurements of Water Quality in San Francisco Bay (CA), 1969-2015 (ver. 3.0 June 2017)" Schraga S T creator United States Geological Survey tschraga@usgs.gov This online link references a USGS data publication https://doi.org/10.5066/F7TQ5ZPR
"USGS Measurements of Water Quality in San Francisco Bay (CA), 1969-2015 (ver. 3.0 June 2017)" Schraga S T contact United States Geological Survey tschraga@usgs.gov This online link references a USGS data publication https://doi.org/10.5066/F7TQ5ZPR
diff --git a/tests/testthat/test-Data.R b/tests/testthat/test-Data.R
index 85728cf..0da05eb 100644
--- a/tests/testthat/test-Data.R
+++ b/tests/testthat/test-Data.R
@@ -1,15 +1,55 @@
library(discretewq)
require(purrr)
require(dplyr)
+require(stringr)
require(lubridate)
-All_rows<-sum(map_dbl(list(baystudy, DJFMP, EDSM, EMP, FMWT, SDO, SKT, NCRO,
- SLS, STN, suisun, twentymm, USBR, USGS_SFBS, YBFMP, USGS_CAWSC), nrow))
-tzs<-map_chr(list(baystudy, DJFMP, EDSM, EMP, FMWT, SDO, SKT, SLS, STN, suisun, twentymm, USBR, USGS_SFBS, YBFMP, USGS_CAWSC, NCRO), ~tz(.x$Datetime))
-Data<-wq(Sources=c("EMP", "STN", "FMWT", "EDSM", "DJFMP", "SDO", "SKT", "SLS", "NCRO",
- "20mm", "Suisun", "Baystudy", "USBR", "USGS_SFBS", "YBFMP", "USGS_CAWSC"))%>%
- mutate(ID=paste(Source, Station, Date, Datetime, Latitude, Longitude))
+All_surveys_ls <- list(
+ baystudy,
+ DJFMP,
+ DOP,
+ EDSM,
+ EMP,
+ FMWT,
+ NCRO,
+ SDO,
+ SKT,
+ SLS,
+ STN,
+ suisun,
+ twentymm,
+ USBR,
+ USGS_CAWSC,
+ USGS_SFBS,
+ YBFMP
+)
+All_surveys_chr <- c(
+ "20mm",
+ "Baystudy",
+ "DJFMP",
+ "DOP",
+ "EDSM",
+ "EMP",
+ "FMWT",
+ "NCRO",
+ "SDO",
+ "SKT",
+ "SLS",
+ "STN",
+ "Suisun",
+ "USBR",
+ "USGS_CAWSC",
+ "USGS_SFBS",
+ "YBFMP"
+)
+
+All_rows <- sum(map_dbl(All_surveys_ls, nrow))
+
+tzs <- map_chr(All_surveys_ls, ~ tz(.x$Datetime))
+
+Data <- wq(Sources = All_surveys_chr) %>%
+ mutate(ID = paste(Source, Station, Date, Datetime, Latitude, Longitude))
test_that("All rows of data make it to the final dataset", {
expect_equal(All_rows, nrow(Data))
@@ -19,22 +59,30 @@ test_that("No samples are duplicated", {
expect_equal(length(unique(Data$ID)), nrow(Data))
})
-test_that("All Lats are between 37 ad 39 and all Longs are between -123 and -121", {
- expect_true(all((Data$Latitude<39 & Data$Latitude>37) | is.na(Data$Latitude)))
- expect_true(all((Data$Longitude<(-121) & Data$Longitude>(-123)) | is.na(Data$Longitude)))
+test_that("All Lats are between 37 and 39 and all Longs are between -123 and -121", {
+ expect_true(all((Data$Latitude < 39 & Data$Latitude > 37) | is.na(Data$Latitude)))
+ expect_true(all((Data$Longitude < (-121) & Data$Longitude > (-123)) | is.na(Data$Longitude)))
})
test_that("All timezones are in local California time", {
- expect_true(all(tzs%in%"America/Los_Angeles"))
+ expect_true(all(tzs %in% "America/Los_Angeles"))
})
test_that("No zeros in environmental variables that shouldn't have them", {
- expect_true(!any(na.omit(Data$Temperature)==0))
- expect_true(!any(na.omit(Data$Conductivity)==0))
+ expect_true(!any(na.omit(Data$Temperature) == 0))
+ expect_true(!any(na.omit(Data$Conductivity) == 0))
})
test_that("Errors work correctly", {
- expect_error(wq(Sources="USGS"), 'The "USGS" data source has been renamed to "USGS_SFBS" because of the inclusion of an additional USGS dataset, "USGS_CAWSC".', fixed=TRUE)
- expect_error(wq(Sources="SFBS"), 'You must specify the data sources you wish to include. Choices include:\n 20mm, Baystudy, DJFMP, EDSM, EMP, FMWT, NCRO, SDO, SKT, SLS, STN, Suisun, USBR, USGS_CAWSC, USGS_SFBS, YBFMP', fixed=TRUE)
+ expect_error(
+ wq(Sources = "USGS"),
+ 'The "USGS" data source has been renamed to "USGS_SFBS" because of the inclusion of an additional USGS dataset, "USGS_CAWSC".',
+ fixed = TRUE
+ )
+ expect_error(
+ wq(Sources = "SFBS"),
+ paste0("You must specify the data sources you wish to include. Choices include:\n ", str_c(All_surveys_chr, collapse = ", ")),
+ fixed = TRUE
+ )
})