tudatpy.plotting

Functions

plot_blue_marble_ground_track(lon: numpy.ndarray, lat: numpy.ndarray, lat_0: float = 0, lon_0: float = 0)[source]

Plots a blue marbel ground track.

Parameters
  • lon (np.ndarray) – Array of longitude values for plotting the ground track.

  • lat (np.ndarray) – Array of latitude values for plotting the ground track.

  • lat_0 (float, optional, default=0.0) – Parallel line (line of latitude) about which the plot is centered.

  • lon_0 (float, optional, default=0.0) – Meridian line (line of longitude) about which the plot is centered.

Examples

>>> from tudatpy.plotting import *
>>> plot_blue_marble_ground_track(lon, lat)
_images/blue-marble-groundtrack.png
Returns

Return type

None

plot_miller_ground_track(lon, lat, lon_0=0)[source]

Plots a Miller ground track.

Parameters
  • lon (np.ndarray) – Array of longitude values for plotting the ground track.

  • lat (np.ndarray) – Array of latitude values for plotting the ground track.

  • lon_0 (float, optional, default=0.0) – Meridian line (line of longitude) about which the plot is centered.

Examples

>>> from tudatpy.plotting import *
>>> plot_miller_ground_track(lon, lat)
_images/miller-groundtrack.png
Returns

Return type

None