I have to create a netcdf for an ensemble of precipitation accumulation 
(standard_name = precipitation_amount).

An ensemble is composed of what we call members, in my case 25 members, for a 
given time step.

Here is an extract of structure of my file looks like:
```
 float time(time) ;
                time:long_name = "time" ;
                time:units = "2021-10-07 12:00:00" ;
                time:calendar = "gregorian" ;
                time:standard_name = "time" ;
                time:axis = "T" ;

float pr000(time, rlon, rlat) ;
                pr000:grid_mapping_name = "latitude_longitude" ;
                pr000:coordinates = "lon lat" ;
                pr000:shortname = "Quantity of precipitation for member 000" ;
                ...
                pr000:standard_name = "precipitation_amount" ;

float pr001(time, rlon, rlat) ;
                pr001:grid_mapping_name = "latitude_longitude" ;
                pr001:coordinates = "lon lat" ;
                pr001:shortname = "Quantity of precipitation for member 001" ;
                ...
                pr001:standard_name = "precipitation_amount" ;

float pr024(time, rlon, rlat) ;
                pr024:grid_mapping_name = "latitude_longitude" ;
                pr024:coordinates = "lon lat" ;
                pr024:shortname = "Quantity of precipitation for member 024" ;
                ...
                pr024:standard_name = "precipitation_amount" ;

```

I was wondering if it was possible to add a new variable (in the same file) 
named for example `q25pr` that represents for example the 25th percentiles 
estimated across all precipitation fields (`pr000`, `pr001`, `pr024`), using 
the cell method ? 
I cannot find a way to add statistics for more than two axis.

Thanks!


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://urldefense.us/v3/__https://github.com/cf-convention/cf-conventions/issues/342__;!!G2kpM7uM-TzIFchu!iX9ya67cCWAbv6M8tcPVZAyO3HCYawykU01hlIgS9DJ__KNBbGpCFmjM8MHikAEyyMeuBVCd_ug$
 
This list forwards relevant notifications from Github.  It is distinct from 
[email protected], although if you do nothing, a subscription to the 
UCAR list will result in a subscription to this list.
To unsubscribe from this list only, send a message to 
[email protected].

Reply via email to