I found someone else's example that showed how to plot a sphere in python, but I was curious if there was an equation that represents individual longitudinal lines along a sphere.
Example: Python/matplotlib : plotting a 3d cube, a sphere and a vector?
# draw sphere
u, v = np.mgrid[0:2*np.pi:20j, 0:np.pi:10j]
x = np.cos(u)*np.sin(v)
y = np.sin(u)*np.sin(v)
z = np.cos(v)
ax.plot_wireframe(x, y, z, color="r")
What I want is an equation for Great Circles that run along a sphere and be able to plot them.
Similar to this post in Mathematica... https://mathematica.stackexchange.com/questions/16413/how-to-draw-a-great-circle-on-a-sphere