Background: I have a sphere of some radius R. What I'm trying to do is essentially create a wireframe consisting of great circles that run along the sphere.
I want an equation to represent the great circles so that I can find points that run along those trajectories.
I don't have enough credit to post links, but there a post in the Mathematica stack exchange titled: How to draw a great circle on a sphere?
Which is what I want to achieve.
However, I want to implement it in python and require a further breakdown of the equations that are happening behind the scenes.
I will be plotting these equations in python.
The equation of equally placed great circles can be written as following in the spherical coordinates$$R=1\\\phi=\dfrac{i}{n}2\pi$$which by translating to Cartesian coordinates gives us $$x^2+y^2+z^2=1\\y=x\cdot\tan \dfrac{i}{n}2\pi$$you can use the following parametric equation for this$$\left(\sin t\cdot\cos \dfrac{i}{n}2\pi\quad,\quad\sin t\cdot\sin \dfrac{i}{n}2\pi\quad,\quad\pm\cos t\right)$$here is an image of what this can generate using MATLAB