diff --git a/examples/xradar/plot_grid_xradar.py b/examples/xradar/plot_grid_xradar.py index 61a500d03d..8a6e00f0c8 100644 --- a/examples/xradar/plot_grid_xradar.py +++ b/examples/xradar/plot_grid_xradar.py @@ -36,5 +36,5 @@ display = pyart.graph.GridMapDisplay(grid) display.plot_grid( - "reflectivity_horizontal", level=0, vmin=-20, vmax=60, cmap="ChaseSpectral" + "reflectivity_horizontal", level=0, vmin=-20, vmax=60, cmap="pyart_ChaseSpectral" ) diff --git a/examples/xradar/plot_xradar.py b/examples/xradar/plot_xradar.py index d6ccb02800..708adffe72 100644 --- a/examples/xradar/plot_xradar.py +++ b/examples/xradar/plot_xradar.py @@ -26,5 +26,5 @@ # Plot the Reflectivity Field (corrected_reflectivity_horizontal) display = pyart.graph.RadarMapDisplay(radar) display.plot_ppi( - "corrected_reflectivity_horizontal", cmap="ChaseSpectral", vmin=-20, vmax=70 + "corrected_reflectivity_horizontal", cmap="pyart_ChaseSpectral", vmin=-20, vmax=70 )