Some of the raw files are too large to upload on GitHub so I’m removing columns I don’t need or use. I will still have the complete data saved on my computer.
EOS
Keeping the follow columns: date, time, salinity + qc test, water temperature + qc test, dissolved oxygen + qc test, pH + qc test.
eos<-read.csv("C:/Users/chels/Box Sync/Thesis/Data/Working data/Bouy data/eos_new.csv", header = TRUE, sep=",", fileEncoding="UTF-8-BOM", stringsAsFactors = FALSE)
eos_new<-subset(eos, select=c(date, time, sea_water_practical_salinity, sea_water_practical_salinity_qc_agg, sea_water_temperature, sea_water_temperature_qc_agg, mass_concentration_of_oxygen_in_sea_water,mass_concentration_of_oxygen_in_sea_water_qc_agg,sea_water_ph_reported_on_total_scale, sea_water_ph_reported_on_total_scale_qc_agg))
write.csv(eos_new, "C:/Users/chels/Box Sync/Thesis/Data/Working data/Bouy data/eos_all.csv")
Fort Point
Keeping the follow columns: datetime, date, time, salinity + qc test, water temperature + qc test
fp<-read.csv("C:/Users/chels/Box Sync/Thesis/Data/Working data/Bouy data/fort_point_r.csv", header = TRUE, sep=",", fileEncoding="UTF-8-BOM", stringsAsFactors = FALSE)
fp_new<-subset(fp, select=c(datetime, date, time, sea_water_practical_salinity, sea_water_practical_salinity_qc_agg, sea_water_temperature, sea_water_temperature_qc_agg))
write.csv(fp_new, "C:/Users/chels/Box Sync/Thesis/Data/Working data/Bouy data/fp_all.csv")