We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I believe I have found missing data in the ENS mean dataset:
ens_source = xr.open_zarr( "gs://weatherbench2/datasets/ifs_ens/2018-2022-1440x721_mean.zarr" ) ens_source.sel(time="2019-10-17T00:00:00.000000000")["2m_temperature"].isel(prediction_timedelta=-1).plot() # results in an empty plot
I spot checked a couple other surface variables (10m_v_component_of_wind, 10m_u_component_of_wind) and they are also empty.
10m_v_component_of_wind
10m_u_component_of_wind
It looks like the pressure level variables are fine:
ens_source.sel(time="2019-10-17T00:00:00.000000000")["temperature"].isel(prediction_timedelta=-1, level=-1).plot() # normal plot
Not sure if you still have the source data but would be amazing to have this filled in. Can I support this in any way?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I believe I have found missing data in the ENS mean dataset:
I spot checked a couple other surface variables (
10m_v_component_of_wind
,10m_u_component_of_wind
) and they are also empty.It looks like the pressure level variables are fine:
Not sure if you still have the source data but would be amazing to have this filled in. Can I support this in any way?
The text was updated successfully, but these errors were encountered: