From 7edff1d50136862af833f793407dc2a233c332b4 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Sat, 28 Dec 2024 22:38:50 +0800 Subject: [PATCH] Fix a doctest in pygmt/datasets/earth_mean_dynamic_topography.py --- pygmt/datasets/earth_mean_dynamic_topography.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pygmt/datasets/earth_mean_dynamic_topography.py b/pygmt/datasets/earth_mean_dynamic_topography.py index 3e7e947043b..4ca50e476be 100644 --- a/pygmt/datasets/earth_mean_dynamic_topography.py +++ b/pygmt/datasets/earth_mean_dynamic_topography.py @@ -86,9 +86,9 @@ def load_earth_mean_dynamic_topography( >>> grid = load_earth_mean_dynamic_topography( ... resolution="30m", registration="gridline" ... ) - >>> # load high-resolution (5 arc-minutes) grid for a specific region + >>> # load high-resolution (7 arc-minutes) grid for a specific region >>> grid = load_earth_mean_dynamic_topography( - ... resolution="05m", + ... resolution="07m", ... region=[120, 160, 30, 60], ... registration="gridline", ... )