-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into docstring-formatter
- Loading branch information
Showing
42 changed files
with
883 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 21 additions & 21 deletions
42
examples/projections/azim/azim_equidistant.py
100755 → 100644
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
""" | ||
Azimuthal Equidistant | ||
===================== | ||
The main advantage of this projection is that distances from the projection | ||
center are displayed in correct proportions. Also directions measured from the | ||
projection center are correct. It is very useful for a global view on locations | ||
that lie within a certain distance or for comparing distances of different | ||
locations relative to the projection center. | ||
``elon0/lat0[/horizon]/scale`` or ``Elon0/lat0[/horizon]/width`` | ||
``lon0/lat0`` specifies the projection center. The optional parameter | ||
``horizon`` specifies the max distance to the projection center (i.e. the | ||
visibile portion of the rest of the world map) in degrees <= 180° (default 180°). | ||
""" | ||
import pygmt | ||
|
||
fig = pygmt.Figure() | ||
fig.coast(projection="E-100/40/4.5i", region="g", frame="g", land="gray") | ||
fig.show() | ||
""" | ||
Azimuthal Equidistant | ||
===================== | ||
The main advantage of this projection is that distances from the projection | ||
center are displayed in correct proportions. Also directions measured from the | ||
projection center are correct. It is very useful for a global view on locations | ||
that lie within a certain distance or for comparing distances of different | ||
locations relative to the projection center. | ||
``elon0/lat0[/horizon]/scale`` or ``Elon0/lat0[/horizon]/width`` | ||
``lon0/lat0`` specifies the projection center. The optional parameter | ||
``horizon`` specifies the max distance to the projection center (i.e. the | ||
visibile portion of the rest of the world map) in degrees <= 180° (default 180°). | ||
""" | ||
import pygmt | ||
|
||
fig = pygmt.Figure() | ||
fig.coast(projection="E-100/40/4.5i", region="g", frame="g", land="gray") | ||
fig.show() |
Oops, something went wrong.