diff --git a/7_visualization/8c_global_summa_mean_ET.py b/7_visualization/8c_global_summa_mean_ET.py index ef967bd..6c970e3 100644 --- a/7_visualization/8c_global_summa_mean_ET.py +++ b/7_visualization/8c_global_summa_mean_ET.py @@ -41,7 +41,7 @@ # Define where to save the figure fig_path = Path('/gpfs/tp/gwf/gwf_cmt/wknoben/CWARHM_data/domain_global/visualization') -fig_name = 'mean_january_1979_evap_FOR_global_v11.jpg' +fig_name = 'mean_january_1979_evap_FOR_global_v12.jpg' # Make the folder if it doesn't exist fig_path.mkdir(parents=True, exist_ok=True) @@ -87,7 +87,7 @@ # #### Prepare plotting settings # Basin settings et_ttl = '(a) Mean simulated total evapotranspiration' -et_lbl = '[kg m-2 s-1]' +et_lbl = '$[kg~m^{-2}~s^{-1}]$' # Make a global ET colormap #colors_low = plt.cm.YlGnBu_r(np.linspace(0,1,256)) diff --git a/7_visualization/8d_global_summa_mean_Q.py b/7_visualization/8d_global_summa_mean_Q.py index 9d5b077..3b7d6b8 100644 --- a/7_visualization/8d_global_summa_mean_Q.py +++ b/7_visualization/8d_global_summa_mean_Q.py @@ -41,7 +41,7 @@ # Define where to save the figure fig_path = Path('/gpfs/tp/gwf/gwf_cmt/wknoben/CWARHM_data/domain_global/visualization') -fig_name = 'mean_january_1979_runoff_FOR_global_v6.png' +fig_name = 'mean_january_1979_runoff_FOR_global_v12.png' # Make the folder if it doesn't exist fig_path.mkdir(parents=True, exist_ok=True) @@ -86,7 +86,7 @@ # #### Prepare plotting settings # Basin settings q_ttl = '(b) Mean simulated total runoff' -q_lbl = '[m s-1]' +q_lbl = '$[m~s^{-1}]$' q_col = 'Blues' q_min = 1e-9 q_max = 1e-7 diff --git a/7_visualization/8e_global_mizuRoute_mean_IRF.py b/7_visualization/8e_global_mizuRoute_mean_IRF.py index b90760f..08f6827 100644 --- a/7_visualization/8e_global_mizuRoute_mean_IRF.py +++ b/7_visualization/8e_global_mizuRoute_mean_IRF.py @@ -43,7 +43,7 @@ # Define where to save the figure fig_path = Path('/gpfs/tp/gwf/gwf_cmt/wknoben/CWARHM_data/domain_global/visualization') -fig_name = 'mean_january_1979_streamflow_per_segment_FOR_global_v5.png' +fig_name = 'mean_january_1979_streamflow_per_segment_FOR_global_v12.png' # Make the folder if it doesn't exist fig_path.mkdir(parents=True, exist_ok=True) @@ -84,7 +84,7 @@ linewidth = np.maximum(np.log10(shp[stats_varId])-2,0) river_col = 'Blues' river_ttl = '(c) Mean simulated streamflow' -river_lbl = '[m3 s-1]' +river_lbl = '$[m^3~s^{-1}]$' river_min = 1e-1 river_max = 1e5 river_nrm = matplotlib.colors.LogNorm(vmin=river_min, vmax=river_max)