-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thermocline depth question #108
Comments
I have stumbled upon a similar issue. I am not the author of this package but reading the code, I can give you my opinion ;) It is more a scientific question than coding since the code works, just the data bring unexpected effects. seasonal = TRUE takes the deepest peek in density slope an thus filtering some of your wrong peaks which are stronger but more shallow. Depends how your profiles looks like (over whole season, you can notice some major differences). Option 1Your seasonal thermocline depth is not detected probably because (as you say) it is not properly formed thus not satisfying the condition using the threshold set by slope parameter. In that case, you can try to increase it. Option 2Another option would be to delete measurements from shallow depths before the analyses, but from my experience, it fails in some special cases. Option 3The thermocline will always be quite jitterish since it is detected in each time interval separately. You might want to use some smoothers (moving mean, gam). This way you can get stable seasonal thermocline trend and possibly use it for subsequent filtering (some threshold set on residuals). |
Another option within this package is to use the |
I must add another option to my list above: Option 4
For this approach it is better to go for |
I have 1m interval thermistors collecting hourly data in a reservoir and the thermocline depths calculated over the sampling period look a bit odd (see image below) with many at 1.5 or 12.5m from June into August when seasonal=TRUE. When I change code so seasonal=FALSE, less depths are at 12.5m but more appear at 1.5m. I am still running into these issues and am wondering if you might be able to provide some insight on this and/or coding suggestions to possibly decrease their occurrence.
My best guess is these 1.5 and 12.5m depths are due to a secondary thermocline or stratification isn't well defined enough to calculate a thermocline depth as mentioned in the EM&S (2011) paper but other insights would be appreciated.
Thanks in advance.
The text was updated successfully, but these errors were encountered: