From ad264c30e7526a7d2c736331274709c22a77bf28 Mon Sep 17 00:00:00 2001 From: zssherman Date: Tue, 15 Oct 2024 12:57:25 -0500 Subject: [PATCH] FIX: Update example for new parameter order. --- examples/plotting/plot_xsection.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/plotting/plot_xsection.py b/examples/plotting/plot_xsection.py index 6aec1f42a6..c519a7497a 100644 --- a/examples/plotting/plot_xsection.py +++ b/examples/plotting/plot_xsection.py @@ -20,8 +20,8 @@ # Dimensions whose coordinates can be specified by variables in the file display = act.plotting.XSectionDisplay(my_ds, figsize=(20, 8), subplot_shape=(2, 2)) display.plot_xsection_map( - None, 'ir_temperature', + None, x='longitude', y='latitude', cmap='Greys', @@ -30,8 +30,8 @@ subplot_index=(0, 0), ) display.plot_xsection_map( - None, 'ir_temperature', + None, x='longitude', y='latitude', cmap='Greys', @@ -40,8 +40,8 @@ subplot_index=(1, 0), ) display.plot_xsection_map( - None, 'ir_temperature', + None, x='longitude', y='latitude', cmap='Greys', @@ -50,8 +50,8 @@ subplot_index=(0, 1), ) display.plot_xsection_map( - None, 'ir_temperature', + None, x='longitude', y='latitude', cmap='Greys',