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

Explicitly request value for 'endStep' as integer #371

Merged
merged 6 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
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
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Changelog for cfgrib
====================

x.x.x.x (xxxx-xx-xx)
--------------------

- fixed issue where GRIB messages with non-hourly steps could not be read
See `#370 <https://github.com/ecmwf/cfgrib/pull/370>`_.


0.9.11.0 (2024-04-05)
---------------------

Expand Down
17 changes: 15 additions & 2 deletions cfgrib/cfmessage.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def to_grib_date_time(
message[time_key] = int(datetime_iso[11:16].replace(":", ""))


def from_grib_step(message, step_key="endStep", step_unit_key="stepUnits"):
def from_grib_step(message, step_key="endStep:int", step_unit_key="stepUnits:int"):
# type: (abc.Field, str, str) -> float
step_unit = message[step_unit_key]
to_seconds = GRIB_STEP_UNITS_TO_SECONDS[step_unit]
Expand All @@ -97,7 +97,7 @@ def from_grib_step(message, step_key="endStep", step_unit_key="stepUnits"):
return int(message[step_key]) * to_seconds / 3600.0


def to_grib_step(message, step_ns, step_unit=1, step_key="endStep", step_unit_key="stepUnits"):
def to_grib_step(message, step_ns, step_unit=1, step_key="endStep:int", step_unit_key="stepUnits:int"):
# type: (abc.MutableField, int, int, str, str) -> None
step_s = step_ns * 1e-9
to_seconds = GRIB_STEP_UNITS_TO_SECONDS[step_unit]
Expand All @@ -107,6 +107,17 @@ def to_grib_step(message, step_ns, step_unit=1, step_key="endStep", step_unit_ke
message[step_unit_key] = step_unit


def from_grib_step_units(message):
# type: (abc.Field) -> float
# we always index steps in hours
return 1


def to_grib_step_units(message, step_unit=1, step_unit_key="stepUnits:int"):
# type: (abc.MutableField, int, str) -> None
message[step_unit_key] = step_unit


def from_grib_month(message, verifying_month_key="verifyingMonth", epoch=DEFAULT_EPOCH):
# type: (abc.Field, str, datetime.datetime) -> int
date = message[verifying_month_key]
Expand Down Expand Up @@ -149,6 +160,8 @@ def build_valid_time(time, step):
COMPUTED_KEYS = {
"time": (from_grib_date_time, to_grib_date_time),
"step": (from_grib_step, to_grib_step),
"endStep": (from_grib_step, to_grib_step),
"stepUnits": (from_grib_step_units, to_grib_step_units),
"valid_time": (
functools.partial(from_grib_date_time, date_key="validityDate", time_key="validityTime"),
functools.partial(to_grib_date_time, date_key="validityDate", time_key="validityTime"),
Expand Down
Binary file added tests/sample-data/step_60m.grib
Binary file not shown.
6 changes: 3 additions & 3 deletions tests/test_25_cfmessage.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def test_to_grib_date_time() -> None:


def test_from_grib_step() -> None:
message = {"endStep": 1, "stepUnits": 1}
message = {"endStep:int": 1, "stepUnits:int": 1}
step_seconds = cfmessage.from_grib_step(message)

assert step_seconds == 1
Expand All @@ -40,8 +40,8 @@ def test_to_grib_step() -> None:

cfmessage.to_grib_step(message, step_ns, step_unit=1)

assert message["endStep"] == 1
assert message["stepUnits"] == 1
assert message["endStep:int"] == 1
assert message["stepUnits:int"] == 1

with pytest.raises(ValueError):
cfmessage.to_grib_step(message, 0, step_unit=3)
Expand Down
12 changes: 12 additions & 0 deletions tests/test_40_xarray_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import gribapi # type: ignore
import numpy as np
import pandas as pd
import pytest

xr = pytest.importorskip("xarray") # noqa
Expand All @@ -17,6 +18,7 @@
TEST_DATA_MULTIPLE_FIELDS = os.path.join(SAMPLE_DATA_FOLDER, "regular_gg_ml_g2.grib")
TEST_DATA_DIFFERENT_STEP_TYPES = os.path.join(SAMPLE_DATA_FOLDER, "cfrzr_and_cprat.grib")
TEST_DATA_DIFFERENT_STEP_TYPES_ZEROS = os.path.join(SAMPLE_DATA_FOLDER, "cfrzr_and_cprat_0s.grib")
TEST_DATA_STEPS_IN_MINUTES = os.path.join(SAMPLE_DATA_FOLDER, "step_60m.grib")
TEST_DATA_ALTERNATE_ROWS_MERCATOR = os.path.join(SAMPLE_DATA_FOLDER, "ds.waveh.5.grib")


Expand Down Expand Up @@ -157,6 +159,16 @@ def test_open_datasets_differet_step_types_zeros() -> None:
assert res[1].cfrzr.attrs["GRIB_stepType"] == "avg"


def test_open_dataset_steps_in_minutes() -> None:
res = xarray_store.open_dataset(TEST_DATA_STEPS_IN_MINUTES)

var = res["t2m"]
steps = var.step
assert steps[0] == pd.Timedelta("0 hours")
assert steps[1] == pd.Timedelta("1 hours")
assert steps[5] == pd.Timedelta("5 hours")


def test_alternating_scanning_mercator() -> None:
ds = xarray_store.open_dataset(TEST_DATA_ALTERNATE_ROWS_MERCATOR)
values = ds.variables["shww"].data
Expand Down
1 change: 1 addition & 0 deletions tests/test_50_sample_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"single_gridpoint",
"spherical_harmonics",
"t_analysis_and_fc_0",
"step_60m",
],
)
def test_open_dataset(grib_name: str) -> None:
Expand Down