This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import matplotlib.pyplot as plt | |
import numpy as np #casue it rocks | |
# get random values to plot | |
#needs to be in radians from (-pi,pi) & (-pi/2, pi/2) | |
a = np.random.rand(100)*2*np.pi - np.pi | |
d = np.random.rand(100)*np.pi - np.pi/2 | |
#todo(make values astropy.cooridnates and use wrap_at(180*u.degree). Allows for more varriable data. | |
#make figure |