Skip to content

Commit 9b2ae0c

Browse files
Use no underscore
1 parent f62fa4b commit 9b2ae0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/gallery/images/cross_section.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
fig.shift_origin(yshift="h+1.5c")
7676

7777
fig.basemap(
78-
region=[0, 15, -8000, 6000], # x_min, x_max, y_min, y_max
78+
region=[0, 15, -8000, 6000], # xmin, xmax, ymin, ymax
7979
# Cartesian projection with a width of 12 centimeters and a height of 3 centimeters
8080
projection="X12c/3c",
8181
frame=0,

examples/projections/nongeo/cartesian_linear.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import pygmt
2222

2323
fig = pygmt.Figure()
24-
# The region parameter is specified as x_min, x_max, y_min, y_max
24+
# The region parameter is specified as xmin, xmax, ymin, ymax
2525
fig.basemap(region=[0, 10, 0, 50], projection="X15c/10c", frame=["afg", "+gbisque"])
2626
fig.plot(x=[3, 9, 2], y=[4, 9, 37], pen="2p,black")
2727
# Plot data points on top of the line

0 commit comments

Comments
 (0)