Skip to content

Commit ae89264

Browse files
Improve getting started example (#4666)
1 parent a286249 commit ae89264

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,11 @@ following example:
7575

7676
``` python
7777
import pygmt
78+
7879
fig = pygmt.Figure()
79-
fig.coast(projection="N15c", region="g", frame=True, land="tan", water="lightblue")
80-
fig.text(position="MC", text="PyGMT", font="80p,Helvetica-Bold,red@75")
80+
fig.basemap(projection="R7c", region=[0, 360, -90, 90], frame=True)
81+
fig.coast(land="tan", water="lightblue")
82+
fig.text(position="MC", text="PyGMT", font="40p,AvantGarde-Book,red@75")
8183
fig.show()
8284
```
8385

0 commit comments

Comments
 (0)