I'm complete beginner with Cywing and CDO, which both have been installed in Windows 10. I'm working with 3 variables from ERA 5 Land hourly data: 2m temperature, total precipitation and runoff. Some facts about these vars:
- three variables are in netCDF format.
- 2m temperature: contains hourly values and its units are in Kelvin.
- total precipitation and runoff: contains hourly values and their units are depth in metres.
I want to obtain daily anomalies of 2017 arising from 30-year period (1981-2010). This post gave me a general idea what to do but I'm not pretty sure how to replicate. Intuitively, I think this would be the setps:
- Convert units according to each var (e.g. K to C for 2m temperature, metres to mm for total precipitation)
- Convert data from hourly to daily values
- Obtain mean values for 2017 data and 1981-2010 data
- Substract: 30-year mean values minus 2017 mean value
- Download the file containing 2017 anomalies
Not sure about the order of procedures.
What the coding would be like in Cygwin terminal?