Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions rocketpy/plots/monte_carlo_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,12 @@ def ellipses(

plt.legend()
ax.set_title("1$\\sigma$, 2$\\sigma$ and 3$\\sigma$ Monte Carlo Ellipses")
ax.set_ylabel("North (m)")
ax.set_xlabel("East (m)")
ax.text(0, -0.1, "West", va="bottom", ha="center", transform=ax.transAxes)
ax.text(1, -0.1, "East", va="bottom", ha="center", transform=ax.transAxes)
ax.text(-0.12, 0, "South", va="bottom", ha="left", transform=ax.transAxes)
ax.text(-0.12, 1, "North", va="top", ha="left", transform=ax.transAxes)
ax.set_ylabel("Y (m)")
ax.set_xlabel("X (m)")

# Add background image to plot
# TODO: In the future, integrate with other libraries to plot the map (e.g. cartopy, ee, etc.)
Expand Down
Loading