This small project was to write a script that robustly plots ground tracks for a given set of orbital elements. The arguments to the function ground_track.m
are the set of (constant) orbital elements {a,e,i,ω,Ω}, a starting true anomaly θ0, and the number of periods to plot.
The function currently assumes constant a,e,i, but does incorporate earth J2 effects which have the effect of creating nonzero ˙ω and ˙Ω. In the future I’d like to incorporate various other disturbances and perturbations such as atmospheric drag and perhaps solar pressure for higher orbits.
As mentioned, the solver incorporates J2 effects, however these are easy to deal with since the derivatives of ω and Ω are constant. So the integration is very simple to carry out:
Ω(t)=Ω0+˙Ωδtω(t)=ω0+˙ωδtFrom here use Kepler’s method to solve for the true anomaly θ at each desired timestep. Then it’s a whole lot of coordinate transformations to finally arrive at the ground track longitude and lattitude of the satellite as observed from a rotating earth.
Here are some results! Not too much to say other than the plots look as we would expect them to. Shown below is a Molniya Orbit, made popular by Soviet spy satellites.
Here’s an orbit we’re all familiar with, which is the ISS’s orbit. It’s plotted here for 5 periods.
There are a number of things I think would be cool to implement into this project.