From 108e8e2bd377f5d0385366def801a038b43d6a39 Mon Sep 17 00:00:00 2001 From: Zach Sherman <19153455+zssherman@users.noreply.github.com> Date: Wed, 4 Sep 2024 14:28:16 -0500 Subject: [PATCH] FIX: Used wrong field in plot. (#1643) --- examples/correct/plot_cloud_mask.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/correct/plot_cloud_mask.py b/examples/correct/plot_cloud_mask.py index 88ccfb5dc4..3a7e1a0184 100644 --- a/examples/correct/plot_cloud_mask.py +++ b/examples/correct/plot_cloud_mask.py @@ -61,6 +61,6 @@ # And now we can plot the masked reflectivity field. display = pyart.graph.RadarDisplay(cloud_mask_radar) -display.plot("reflectivity_copol") +display.plot("reflectivity_cloud_mask") display.set_limits(xlim=(0, 55)) plt.show()