Using anomalies
preprocessor with the reference period outside of time range of interest
#2308
Labels
bear at a dinner party
Something very unexpected
bug
Something isn't working
preprocessor
Related to the preprocessor
Partially related to #1915, but not related to dask usage. Partially related to #2304.
By using this recipe there are issues with anomalies preprocessor. For example, in that case I'm interested in three different periods 1850-1900, 2011-2030 and 2081-2100, however, I'm interested not in the absolute values, but rather in the anomalies with the reference period from 1940 to 1969. Since currently the anomalies preprocessor extracts the reference period from the provided cube (see here) one needs to load the full 1850-1969, 1940-2020 and 1940-2100 cubes; and after the anomalies are calculated, use
extract_timerange
for 1850-1900, 2011-2030 and 2081-2100 respectively. While it worked OK for that particular recipe, it is getting unnecessarily computationally expensive, if using for example daily HighResMIP. Furthermore, one can't usestart_year
/end_year
/timerange
keywords fromcfg
since they apply for the full timeseries.I can even help fixing it, but don't know what would be the best tactic to solve that issue, change
anomalies
that way that it is OK to load two partial cubes? Not to use the preprocessoranomaly
and do like I've done here by creating a separate group and subtracting anomalies in the diagnostic? If the latter than I would suggest raising a warning in theanomalies
preprocessor. Tagging @bouweandela since we touched on that issue in the above mentioned issues.The text was updated successfully, but these errors were encountered: