|
| tuple | test_spice_sunpy.fig_size = (25,15) |
| |
| int | test_spice_sunpy.fig_resolution = 100 |
| |
| tuple | test_spice_sunpy.time_start = module_timespace.Time() |
| |
| tuple | test_spice_sunpy.time_stop = module_timespace.Time() |
| |
| | test_spice_sunpy.delta = time_stop.datetime-time_start.datetime |
| |
| | test_spice_sunpy.ndays = delta.days |
| |
| list | test_spice_sunpy.times = [ module_timespace.Time() for i in range(0,ndays+1) ] |
| |
| list | test_spice_sunpy.sunpy_earth_hgc = [ 0 for i in range(0,len(times)) ] |
| |
| tuple | test_spice_sunpy.sunpy_earth_hgs = ephemeris.get_earth(times[i].datetime) |
| |
| tuple | test_spice_sunpy.fig = plt.figure(num=1,figsize=fig_size,dpi=fig_resolution) |
| |
| tuple | test_spice_sunpy.sub = plt.subplot(221) |
| |
| tuple | test_spice_sunpy.spice = plt.plot([ times[i].datetime for i in range(0,len(times)) ],[ position.lon for position in spice_earth_iau ],'b',marker='x',label='Spice') |
| |
| tuple | test_spice_sunpy.sunpy = plt.plot([ times[i].datetime for i in range(0,len(times)) ],[ position.lon.degree for position in sunpy_earth_hgc ],'r',marker='d',label='Sunpy') |
| |