2D Static Orbits
Learn how to plot 2D static orbits.
We'll cover the following...
You will need several libraries to help plot these orbits:
import numpy as np
from PyAstronomy import pyasl
import matplotlib.pyplot as plt
import matplotlib.animation as animation
import mpl_toolkits.mplot3d.axes3d as p3
The beauty of ...