From 168244b90aae504ae3eed5b52248667caaed5910 Mon Sep 17 00:00:00 2001 From: Michael Hardman <29800382+mrhardman@users.noreply.github.com> Date: Fri, 6 Dec 2024 16:05:22 +0000 Subject: [PATCH] Modify plot2d_polygon to use the standard Rxy, Zxy coordinates labels. Mike Kryjak indicates that this coordinate use was originally an error. --- xbout/plotting/plotfuncs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xbout/plotting/plotfuncs.py b/xbout/plotting/plotfuncs.py index db0a1e67..b3439d1b 100644 --- a/xbout/plotting/plotfuncs.py +++ b/xbout/plotting/plotfuncs.py @@ -945,14 +945,14 @@ def plot2d_polygon( if "Rxy_lower_right_corners" in da.coords: r_nodes = [ - "R", + "Rxy", "Rxy_lower_left_corners", "Rxy_lower_right_corners", "Rxy_upper_left_corners", "Rxy_upper_right_corners", ] z_nodes = [ - "Z", + "Zxy", "Zxy_lower_left_corners", "Zxy_lower_right_corners", "Zxy_upper_left_corners",