Predicting Lake Chlorophyll From Stream Phosphorus Concentrations (2024): Data And Scripts
U.S. Environmental Protection Agency
@usgov.epa_gov_predicting_lake_chlorophyll_from_stream_phosph_015c5066
U.S. Environmental Protection Agency
@usgov.epa_gov_predicting_lake_chlorophyll_from_stream_phosph_015c5066
Monitoring data from Minnesota and from national surveys of lakes and streams that were used in the analysis for the paper: Predicting lake chlorophyll from stream phosphorus concentrations.
mod.mn.R.txt: R script for fitting TP-Chl model using Minnesota data
mod.nat.R.txt: R script for fitting TP-Chl model using national data
dat.nat.1.csv: National stream TP data
dat.nat.2.csv: National lake Chl data
dat.mn.1.csv: Minnesota lake Chl data
dat.mn.2.csv: Minnesota stream TP data. Citation information for this dataset can be found in Data.gov's References section.
Organization: U.S. Environmental Protection Agency
Last updated: 2025-04-21T01:19:10.963455
Tags: chlorophyll, total-phosphorus
CREATE TABLE dat_mn_1 (
"monitoringlocationidentifier" VARCHAR,
"huc12" BIGINT,
"resultmeasurevalue" DOUBLE
);CREATE TABLE dat_mn_2 (
"monitoringlocationidentifier" VARCHAR,
"tp_random" DOUBLE,
"huc12" BIGINT
);CREATE TABLE dat_nat_2 (
"chl" VARCHAR,
"huc8" DOUBLE
);Anyone who has the link will be able to view this.