PNNL-TES / 3soils

Data and code for PNNL "3 Soils" experiment
MIT License
1 stars 0 forks source link

Troubling areas - (1) SR Field_Moist_Saturation #8

Open bpbond opened 5 years ago

bpbond commented 5 years ago

Particularly troubling areas to double check script, data, time stamps, etc., per Peyton:

(1) SR cores from Field_Moist_Saturation only show a little more than an hour of flux data

Relevant data from the 3Soils_CPCRW_SR_DWP_PicarroLog.xlsx workbook:

Site Core_ID SampleID sequence_valve Start_Date_Time Stop_Date_Time
SR 15 S15 15 12/12/2016 11:42 12/12/2016 18:05
SR 21 S21 5 12/12/2016 11:42 12/12/2016 18:05
SR 13 S13 10 12/12/2016 11:42 12/12/2016 18:05
SR 19 S19 3 12/12/2016 11:42 12/12/2016 18:05
SR 1 S1 14 12/12/2016 11:42 12/12/2016 18:05

Raw data matching that day and valve numbers (America/Los_Angeles time):

   DATETIME                 
Min.   :2016-12-12 11:19:36 
1st Qu.:2016-12-12 12:20:55 
Median :2016-12-12 12:54:39 
Mean   :2016-12-12 12:50:31 
3rd Qu.:2016-12-12 13:31:27 
Max.   :2016-12-12 14:02:27 

sr_raw

bpbond commented 5 years ago

History:

filter(valvemap, PHASE=="FIELD_MOIST_SATURATION", Site=="SR") -> sr
filter(rawdata, DATETIME >= "2016-12-12" & DATETIME < "2016-12-13", MPVPosition %in% c(3, 5, 10, 14, 15)) -> sr_raw
sr_raw <- mutate(sr_raw, DATETIME = with_tz(DATETIME, "America/Los_Angeles"))
qplot(DATETIME, MPVPosition, data=sr_raw)
ggsave("~/Desktop/SR_raw.png")
filter(newdata, PHASE=="FIELD_MOIST_SATURATION", Site=="SR") -> sr_new
unique(sr_new$sequence_valve)
unique(sr_new$SampleID)
bpbond commented 5 years ago

Peyton:

Could you look at the day before/after to see if there are longer stretches of times recorded?

There's no Picarro data on 12/11 or 12/13. Just 12/12.

Do we want to change the spreadsheet to say measurements began 11:18 on 12/12?