Note
Click here to download the full example code
Transverse MercatorΒΆ
T[lon0/][lat0/]width
: Give central meridian lon0
, the latitude of the
origin lat0
(optional), and the figure width.
Out:
<IPython.core.display.Image object>
import pygmt
fig = pygmt.Figure()
fig.coast(
region=[20, 50, 30, 45],
projection="T35/12c",
land="lightbrown",
water="seashell",
shorelines="thinnest",
frame="afg",
)
fig.show()
Total running time of the script: ( 0 minutes 0.704 seconds)