Open exowanderer opened 7 years ago
I also think this would be very useful functionality to document better. Here's how I did it:
import ticgen
tc = ticgen.Star(Gmag=12, Jmag=13)
tc.TESS_Mag_GJ()
or you can act on arrays too:
tc = ticgen.Star(Gmag = k_targets['phot_g_mean_mag'], Jmag = k_targets['Jmag'])
Tmag = tc.TESS_Mag_GJ()
How do we supply magnitudes to
ticgen
inside ipython?Example code that did not work
What is the usage for ticgen in ipython?