This commit is contained in:
Roman Krivonos
2024-09-27 19:46:24 +03:00
parent 462133ce2e
commit 0839938594
149 changed files with 157799 additions and 157347 deletions

View File

@@ -50,9 +50,9 @@ ax1.set_xlim(185,-185)
ax2.set_xlim(185,-185)
ax3.set_xlim(185,-185)
ax1.set_ylim(-0.3,1.8)
ax2.set_ylim(-0.3,1.8)
ax3.set_ylim(-0.3,1.8)
ax1.set_ylim(-0.3,1.6)
ax2.set_ylim(-0.3,1.)
ax3.set_ylim(-0.3,1.)
ax1.ticklabel_format(style='sci', axis='y', scilimits=(0,0))
ax2.ticklabel_format(style='sci', axis='y', scilimits=(0,0))
@@ -68,21 +68,21 @@ ax3.yaxis.set_minor_locator(ticker.MultipleLocator(0.2))
lon=(df1['LON1']+df1['LON2'])/2
ax1.plot(df_cobe[0],df_cobe[2]/3, color='red', linewidth=4)
ax1.errorbar(lon, df1['GRXE_SIM_FLUX']/scale,
yerr=df1['GRXE_SIM_ERROR']/scale,
ax1.errorbar(lon, df1['GRXE_FLUX']/scale,
yerr=df1['GRXE_ERROR']/scale,
xerr=(df1['LON2']-df1['LON1'])/2,
fmt='o', color='black')
ax1.grid(visible=True)
lon=(df2['LON1']+df2['LON2'])/2
ax2.errorbar(lon, df2['GRXE_SIM_FLUX']/scale,
yerr=df2['GRXE_SIM_ERROR']/scale,
ax2.errorbar(lon, df2['GRXE_FLUX']/scale,
yerr=df2['GRXE_ERROR']/scale,
xerr=(df2['LON2']-df2['LON1'])/2,fmt='o' , color='black')
ax2.grid(visible=True)
lon=(df3['LON1']+df3['LON2'])/2
ax3.errorbar(lon, df3['GRXE_SIM_FLUX']/scale,
yerr=df3['GRXE_SIM_ERROR']/scale,
ax3.errorbar(lon, df3['GRXE_FLUX']/scale,
yerr=df3['GRXE_ERROR']/scale,
xerr=(df3['LON2']-df3['LON1'])/2, fmt='o' , color='black')
ax3.grid(visible=True)