Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion lib/ldf_variable_defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ GPP: # Gross Primary Production
mpl:
colorbar:
label : "gC m$^{-2}$ d$^{-1}$"
pct_diff_contour_levels: [-100,-75,-50,-40,-30,-20,-10,-8,-6,-4,-2,0,2,4,6,8,10,20,30,40,50,75,100]
pct_diff_contour_levels: [-200,-100,-75,-50,-25,-10,-5,0,5,10,25,50,75,100,200]
pct_diff_colormap: "PiYG"
scale_factor_table: 0.000000365 #days to years, g/m2 to Pg globally
avg_method: 'sum'
Expand Down
8 changes: 8 additions & 0 deletions lib/regions_lnd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ Europe:
lat_bounds: [45, 60]
lon_bounds: [-10, 30]
region_category: Temperate
East Asia:
lat_bounds: [25, 45]
lon_bounds: [85, 120]
region_category: Temperate
Eurasia:
lat_bounds: [15, 75]
lon_bounds: [30, 120]
region_category: Temperate
Mediterranean:
lat_bounds: [34, 45]
lon_bounds: [-10, 30]
Expand Down
3 changes: 3 additions & 0 deletions scripts/plotting/polar_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,9 @@ def polar_map(adfobj):
elif (var == 'FAREA_BURNED') and (s == 'SON'):
print("\t\t Skipping FAREA_BURNED in SON plot")
continue
elif (var == 'GPP') and (s == 'SON'):
print("\t\t Skipping GPP in SON plot")
continue
# not working for regular grids?
elif (var == 'NPP'):
print("\t\t Skipping NPP polar plot")
Expand Down
4 changes: 4 additions & 0 deletions scripts/plotting/regional_climatology.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,10 @@ def regional_climatology(adfobj):
map_ax.set_extent([-140, -55, 10, 70],crs=ccrs.PlateCarree())
elif region_list[iReg]=='S America':
map_ax.set_extent([-100, -20, -45, 20],crs=ccrs.PlateCarree())
elif region_list[iReg]=='East Asia':
map_ax.set_extent([70, 145, 5, 55],crs=ccrs.PlateCarree())
elif region_list[iReg]=='Eurasia':
map_ax.set_extent([20, 130, 10, 80],crs=ccrs.PlateCarree())
else:
if ((box_south >= 30) & (box_east<=-5) ):
map_ax.set_extent([-180, 0, 30, 90],crs=ccrs.PlateCarree())
Expand Down
4 changes: 4 additions & 0 deletions scripts/plotting/regional_timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,10 @@ def regional_timeseries(adfobj):
map_ax.set_extent([-140, -55, 10, 70],crs=ccrs.PlateCarree())
elif region_list[iReg]=='S America':
map_ax.set_extent([-100, -20, -45, 20],crs=ccrs.PlateCarree())
elif region_list[iReg]=='East Asia':
map_ax.set_extent([70, 145, 5, 55],crs=ccrs.PlateCarree())
elif region_list[iReg]=='Eurasia':
map_ax.set_extent([20, 130, 10, 80],crs=ccrs.PlateCarree())
else:
if ((box_south >= 30) & (box_east<=-5) ):
map_ax.set_extent([-180, 0, 30, 90],crs=ccrs.PlateCarree())
Expand Down
Loading