Skip to content

Commit baabdc9

Browse files
committed
ECC-2110: GRIB: Set data values for all sample files with parameter temperature to 273.15K
1 parent ffab6d4 commit baabdc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_eccodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ def test_grib_geoiterator():
551551
[lat, lon, value] = result
552552
assert -90.0 < lat < 90.00
553553
assert 0.0 <= lon < 360.0
554-
assert math.isclose(value, 1.0, abs_tol=0.001)
554+
assert math.isclose(value, 273.15, abs_tol=0.001)
555555
i += 1
556556
assert i == 348528
557557
eccodes.codes_grib_iterator_delete(iterid)

0 commit comments

Comments
 (0)