Skip to content

Commit f73bf79

Browse files
committed
Update grid resolutions
1 parent b5fa029 commit f73bf79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/tutorials/3d-perspective-image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import pygmt
2020

2121
# Load sample earth relief data
22-
grid = pygmt.datasets.load_earth_relief(resolution="05m", region=[-108, -103, 35, 40])
22+
grid = pygmt.datasets.load_earth_relief(resolution="10m", region=[-108, -103, 35, 40])
2323

2424
########################################################################################
2525
# The :meth:`pygmt.Figure.grdview` method takes the ``grid`` input.

examples/tutorials/earth-relief.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Load sample Earth relief data for the entire globe at a resolution of 30 arc minutes.
2424
# The other available resolutions are show
2525
# at :gmt-docs:`datasets/remote-data.html#global-earth-relief-grids`.
26-
grid = pygmt.datasets.load_earth_relief(resolution="30m", registration="gridline")
26+
grid = pygmt.datasets.load_earth_relief(resolution="01d", registration="gridline")
2727

2828
########################################################################################
2929
# Create a plot

0 commit comments

Comments
 (0)