From a91195baac7e8afcffa9aae3a62dc27f32e8ab1a Mon Sep 17 00:00:00 2001 From: Max Grover Date: Fri, 13 Oct 2023 10:03:51 -0500 Subject: [PATCH] FIX: Fix the colormap in xradar examples (#1474) --- examples/xradar/plot_grid_xradar.py | 2 +- examples/xradar/plot_xradar.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 )