-
Notifications
You must be signed in to change notification settings - Fork 0
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
issues with EOBS data #9
Comments
Here is the fraction of eobs missing values from years 1980 to 2020: import xarray as xr
from dask.distributed import Client
client = Client(dashboard_address="localhost:8787")
store = "https://ncsa.osn.xsede.org/Pangeo/pangeo-forge/pangeo-forge/EOBS-feedstock/eobs-tg-tn-tx-rr-hu-pp.zarr"
ds = xr.open_dataset(store, engine="zarr", chunks={}).sel(time=slice("1980", "2020"))
def sum_nan(da):
return da.isnull().sum(dim="time") / da.time.size
%time tg_nan = sum_nan(ds.tg).compute()
%time pr_nan = sum_nan(ds.pp).compute()
tg_nan.plot() pr_nan.plot() There are definitely some regions to take care of when computing monthly or seasonal means. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are some known issues with EOBS data that we have to deal with, e.g., there are some regions that have only limited observations and might have to be skipped for monthly and sesaonal means. We have some experience with it. Pinging @paindeer since you have worked a lot with EOBS data to evaluate REMO ERA5 output. I could not find any details in https://doi.org/10.5194/gmd-7-1297-2014 about that.
The text was updated successfully, but these errors were encountered: