Using python, I would like to plot a series of times (e.g. seconds) against azimuth (degrees) such that the azimuth is displayed around the circumference (with North/0Deg/360Deg) at the top, and time is measured from the centre to the circumference. I have included a sketch of what I am aiming for.
My data are stored as numpy arrays. For example the following (which approximately correspond to the figure):
time = np.array([4 ,5 ,6, 7, 10])
print(time)
[ 4 5 6 7 10]
azi = np.array([70 ,100 ,120, 150, 170])
print(azi)
[ 70 100 120 150 170]