|
string | test_nso_interpolation.map2D_type = 'NSO' |
|
string | test_nso_interpolation.help_message |
|
tuple | test_nso_interpolation.date_min = datetime.datetime(2019,1,1) |
|
list | test_nso_interpolation.date_max = interface_read_map2D.info[map2D_type] |
|
| test_nso_interpolation.tmp = date_min |
|
string | test_nso_interpolation.axis_name_y = 'Latitude' |
|
string | test_nso_interpolation.axis_name_x = 'Carrington Longitude' |
|
int | test_nso_interpolation.axis_size = 10 |
|
string | test_nso_interpolation.axis_color = 'k' |
|
int | test_nso_interpolation.dphi = 20 |
|
list | test_nso_interpolation.xtick_loc = [ i*dphi for i in range(0,int(360./dphi)+1) ] |
|
list | test_nso_interpolation.xtick_label = [ str(int(xtick_loc[i])) for i in range(0,len(xtick_loc)) ] |
|
list | test_nso_interpolation.ytick_loc = [ -90,-80,-60,-40,-20,0,20,40,60,80,90 ] |
|
list | test_nso_interpolation.ytick_label = [ str(int(ytick_loc[i])) for i in range(0,len(ytick_loc)) ] |
|
tuple | test_nso_interpolation.folder_test = os.path.join('dir.test','TEST_NSO') |
|
tuple | test_nso_interpolation.fig_size = (20,10) |
|
int | test_nso_interpolation.fig_resolution = 100 |
|
| test_nso_interpolation.delta = date_max-date_min |
|
| test_nso_interpolation.ndays = delta.days |
|
list | test_nso_interpolation.dates = [ date_min + i*datetime.timedelta(days=1) for i in range(0,ndays+1) ] |
|
tuple | test_nso_interpolation.fig = plt.figure(num=1,figsize=fig_size,dpi=fig_resolution) |
|
tuple | test_nso_interpolation.map2D_path = interface_read_map2D.date2map(map2D_type,date) |
| NSO Original. More...
|
|
tuple | test_nso_interpolation.map2D_orig = module_nso_gong_map2D.read_fits(map2D_path) |
|
tuple | test_nso_interpolation.sub = plt.subplot(121) |
|
tuple | test_nso_interpolation.img = plot_common.map2D(sub,map2D_type,map2D_orig,1) |
|
tuple | test_nso_interpolation.eq = plot_common.equator(sub,'black') |
|
tuple | test_nso_interpolation.map2D_interp = module_nso_gong_map2D.interpolate(map2D_orig) |
| NSO Interpolated. More...
|
|