Note
Click here to download the full example code
Cylindrical Stereographic¶
The cylindrical stereographic projections are certainly not as notable as other cylindrical projections, but are still used because of their relative simplicity and their ability to overcome some of the downsides of other cylindrical projections, like extreme distortions of the higher latitudes. The stereographic projections are perspective projections, projecting the sphere onto a cylinder in the direction of the antipodal point on the equator. The cylinder crosses the sphere at two standard parallels, equidistant from the equator.
Cyl_stere/[lon0/][lat0/]width
: Give central meridian lon0
(optional) and
standard parallel lat0
(optional). The standard parallel is typically one of these
(but can be any value):
66.159467 - Miller’s modified Gall
55 - Kamenetskiy’s First
45 - Gall’s Stereographic
30 - Bolshoi Sovietskii Atlas Mira or Kamenetskiy’s Second
0 - Braun’s Cylindrical
Out:
<IPython.core.display.Image object>
import pygmt
fig = pygmt.Figure()
fig.coast(region="g", frame="afg", land="gray", projection="Cyl_stere/30/-20/8i")
fig.show()
Total running time of the script: ( 0 minutes 0.977 seconds)