Skip to content

Commit

Permalink
FIX: Fix the colormap in xradar examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrover1 committed Oct 13, 2023
1 parent daf92fa commit 46344a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/xradar/plot_grid_xradar.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
2 changes: 1 addition & 1 deletion examples/xradar/plot_xradar.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

0 comments on commit 46344a1

Please sign in to comment.