OrthographicΒΆ

This is a perspective projection like the general perspective, but with the difference that the point of perspective lies in infinite distance. It is therefore often used to give the appearance of a globe viewed from outer space, were one hemisphere can be seen as a whole. It is neither conformal nor equal-area and the distortion increases near the edges.

glon0/lat0[/horizon]/scale or Glon0/lat0[/horizon]/width

lon0/lat0 specifies the projection center, the optional parameter horizon specifies the max distance from projection center (in degrees, <= 90, default 90)

../../_images/sphx_glr_azim_orthographic_001.png

Out:

<IPython.core.display.Image object>

import pygmt

fig = pygmt.Figure()
fig.coast(projection="G10/52/4.5i", region="g", frame="g", land="gray")
fig.show()

Total running time of the script: ( 0 minutes 0.666 seconds)

Gallery generated by Sphinx-Gallery