From bd468927f305f88fffc0b20038c1ebc9578fbc6d Mon Sep 17 00:00:00 2001 From: ftong Date: Fri, 6 Jun 2025 16:40:46 +0200 Subject: [PATCH] Update src/seismic_hazard_forecasting.py --- src/seismic_hazard_forecasting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/seismic_hazard_forecasting.py b/src/seismic_hazard_forecasting.py index 6f07d7c..79ee05b 100644 --- a/src/seismic_hazard_forecasting.py +++ b/src/seismic_hazard_forecasting.py @@ -517,7 +517,7 @@ verbose: {verbose}") map_center = [np.mean([north, south]), np.mean([east, west])] # Create an image from the grid - cmap_name = 'viridis' + cmap_name = 'YlOrRd' cmap = plt.get_cmap(cmap_name) fig, ax = plt.subplots(figsize=(6, 6)) ax.imshow(iml_grid_hd, origin='lower', cmap=cmap, vmin=vmin, vmax=vmax)