Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions scripts/part6_ice_conc_timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def tick_values(self, vmin, vmax):

#fig.text(-0.04, 0.5, 'Sea ice extent [$1000 km^2$]', fontsize=13, va='center', rotation=90)
#fig.text(0.5, -0.02, 'Year', fontsize=13, ha='center', rotation=0)
ax1.set_ylabel('Sea ice extent [$1000 km^2$]', fontsize=17)
ax1.set_ylabel('Sea ice extent [$Mio. km^2$]', fontsize=17)
ax1.set_xlabel('Year', fontsize=17)

ax1.yaxis.grid(color='gray', linestyle='dashed')
Expand All @@ -142,7 +142,7 @@ def tick_values(self, vmin, vmax):
ax1.xaxis.set_minor_locator(MultipleLocator(10))

legend=['Arctic March','Arctic September','Antarctic March','Antarctic September']
plt.legend(legend,loc='upper left',fontsize=15)
plt.legend(legend,loc='upper left', bbox_to_anchor=(0., 1.35),fontsize=15)
plt.savefig(out_path+"sea_ice_extent_comparison.png",dpi=300,bbox_inches = "tight")#%%capture
runs=[spinup_name, historic_name, pi_ctrl_name]

Expand Down Expand Up @@ -253,7 +253,7 @@ def tick_values(self, vmin, vmax):

#fig.text(-0.04, 0.5, 'Sea ice extent [$1000 km^2$]', fontsize=13, va='center', rotation=90)
#fig.text(0.5, -0.02, 'Year', fontsize=13, ha='center', rotation=0)
ax1.set_ylabel('Sea ice extent [$1000 km^2$]', fontsize=17)
ax1.set_ylabel('Sea ice extent [$Mio. km^2$]', fontsize=17)
ax1.set_xlabel('Year', fontsize=17)

ax1.yaxis.grid(color='gray', linestyle='dashed')
Expand All @@ -273,7 +273,7 @@ def tick_values(self, vmin, vmax):
ax1.xaxis.set_minor_locator(MultipleLocator(10))

legend=['Arctic March','Arctic September','Antarctic March','Antarctic September']
plt.legend(legend,loc='upper left',fontsize=15)
plt.legend(legend,loc='upper left', bbox_to_anchor=(0., 1.35),fontsize=15)
plt.savefig(out_path+"sea_ice_extent_comparison.png",dpi=300,bbox_inches = "tight")


Expand Down