-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor the documentation tutorials (#130)
Shifted the focus to how to do things with Boule and point to other pages (like the new glossary and docstrings) for more of the theory. Gravity disturbance tutorial expanded a bit to be more in line with the Harmonica tutorial. Coordinate conversion tutorial was refocused on using pymap3d instead of explaining what the coordinate systems are, which should be in a separate page.
- Loading branch information
Showing
28 changed files
with
853 additions
and
553 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
.. _ellipsoids: | ||
|
||
Available ellipsoids | ||
==================== | ||
|
||
These are the available ellipsoids and their corresponding defining parameters. | ||
|
||
All ellipsoids are instances of the :class:`~boule.Ellipsoid`, | ||
:class:`~boule.Sphere`, or :class:`~boule.TriaxialEllipsoid` classes. See the | ||
class documentations for a list their derived physical properties (attributes) | ||
and computations/transformations that they can perform (methods). | ||
|
||
.. jupyter-execute:: | ||
:hide-code: | ||
|
||
import boule | ||
|
||
|
||
Earth | ||
----- | ||
|
||
The **WGS84 (World Geodetic System 1984)** ellipsoid as defined by the values | ||
given in [HofmannWellenhofMoritz2006]_: | ||
|
||
.. jupyter-execute:: | ||
|
||
print(boule.WGS84) | ||
|
||
The **GRS80 (Geodetic Reference System 1980)** ellipsoid as defined by the | ||
values given in [HofmannWellenhofMoritz2006]_: | ||
|
||
.. jupyter-execute:: | ||
|
||
print(boule.GRS80) | ||
|
||
Moon | ||
---- | ||
|
||
The parameters of the Lunar spheroid were obtained from [Wieczorek2015]_: | ||
|
||
.. jupyter-execute:: | ||
|
||
print(boule.MOON) | ||
|
||
Mars | ||
---- | ||
|
||
The parameters of the Martian ellipsoid were obtained from [Ardalan2009]_: | ||
|
||
.. jupyter-execute:: | ||
|
||
print(boule.MARS) | ||
|
||
Mercury | ||
------- | ||
|
||
The parameters of the Mercurian spheroid were obtained from [Wieczorek2015]_: | ||
|
||
.. jupyter-execute:: | ||
|
||
print(boule.MERCURY) | ||
|
||
Venus | ||
----- | ||
|
||
The parameters of the Venusian spheroid were obtained from [Wieczorek2015]_: | ||
|
||
.. jupyter-execute:: | ||
|
||
print(boule.VENUS) | ||
|
||
Vesta | ||
----- | ||
|
||
The parameters of the Vesta triaxial ellipsoid were obtained from [Russell2012]_: | ||
|
||
.. jupyter-execute:: | ||
|
||
print(boule.VESTA) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.