I want to plot satellite track over a ground station, like how Gpredict and other ground station tool does it:
In that polar plot, for the r-axis, 90 degrees is at the center and 0 degrees is at the edge. In Julia its the other way, 0 is at the center and 90 is at the edge:
I want the plot to look like this, with 0 at the edge and 90 at the center:
I got that by subtracting the r-axis values from 90 degrees, something like this:
plot(azimuth[4149:4149+400], 90 .- elevation[4149:4149+400],proj = :polar, ylim=(0,90))