Skip to content

Commit

Permalink
Update minimum value on GEBCO grid (#3394)
Browse files Browse the repository at this point in the history
GEBCO grid was updated to 2024 version at GenericMappingTools/gmtserver-admin#265
  • Loading branch information
weiji14 authored Aug 13, 2024
1 parent 7906307 commit dbb5c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygmt/tests/test_datasets_earth_relief.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def test_earth_relief_01d_with_region_gebco():
assert data.gmt.registration == 0
npt.assert_allclose(data.lat, np.arange(-5, 6, 1))
npt.assert_allclose(data.lon, np.arange(-10, 11, 1))
npt.assert_allclose(data.min(), -5136.0, atol=1.0)
npt.assert_allclose(data.min(), -5118.0, atol=1.0)
npt.assert_allclose(data.max(), 681.0, atol=1.0)


Expand Down

0 comments on commit dbb5c33

Please sign in to comment.