Skip to content

Commit 03759d3

Browse files
committed
[format-command] fixes
1 parent fea6152 commit 03759d3

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

examples/projections/cyl/cyl_oblique_mercator_1.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@
2020

2121
fig = pygmt.Figure()
2222
# Using the origin and azimuth
23-
fig.coast(projection="Oa-120/25/-30/12c+v",
23+
fig.coast(
24+
projection="Oa-120/25/-30/12c+v",
2425
# Set bottom left and top right coordinates of the figure with "+r"
25-
region= "-122/35/-107/22+r",
26+
region="-122/35/-107/22+r",
2627
frame="afg",
2728
land="gray",
2829
shorelines="1/thin",
2930
water="lightblue",
30-
)
31+
)
3132
fig.show()

examples/projections/cyl/cyl_oblique_mercator_2.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@
2020

2121
fig = pygmt.Figure()
2222
# Using the origin and two points
23-
fig.coast(projection="Ob130/35/25/35/12c",
23+
fig.coast(
24+
projection="Ob130/35/25/35/12c",
2425
# Set bottom left and top right coordinates of the figure with "+r"
25-
region= "130/35/145/40+r",
26+
region="130/35/145/40+r",
2627
frame="afg",
2728
land="gray",
2829
shorelines="1/thin",
2930
water="lightblue",
30-
)
31+
)
3132
fig.show()

examples/projections/cyl/cyl_oblique_mercator_3.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@
1919

2020
fig = pygmt.Figure()
2121
# Using the origin projection pole
22-
fig.coast(projection="Oc280/25.5/22/69/12c",
22+
fig.coast(
23+
projection="Oc280/25.5/22/69/12c",
2324
# Set bottom left and top right coordinates of the figure with "+r"
24-
region= "270/20/305/25+r",
25+
region="270/20/305/25+r",
2526
frame="afg",
2627
land="gray",
2728
shorelines="1/thin",
2829
water="lightblue",
29-
)
30+
)
3031
fig.show()

0 commit comments

Comments
 (0)