Skip to content
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

Update call to xarray _validate_attrs #401

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion cfgrib/xarray_to_grib.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,11 @@ def canonical_dataset_to_grib(dataset, path, mode="wb", no_warn=False, grib_keys

# validate Dataset keys, DataArray names, and attr keys/values
xr.backends.api._validate_dataset_names(dataset) # type: ignore
xr.backends.api._validate_attrs(dataset) # type: ignore
# _validate_attrs takes the engine name as its 2nd arg from xarray 2024.09.0
try:
xr.backends.api._validate_attrs(dataset) # type: ignore
except TypeError:
xr.backends.api._validate_attrs(dataset, "cfgrib") # type: ignore

real_grib_keys = {str(k)[5:]: v for k, v in dataset.attrs.items() if str(k)[:5] == "GRIB_"}
real_grib_keys.update(grib_keys)
Expand Down
Loading