Skip to content

Commit

Permalink
FIX: Update example for new parameter order.
Browse files Browse the repository at this point in the history
  • Loading branch information
zssherman committed Oct 15, 2024
1 parent 7588ff7 commit ad264c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/plotting/plot_xsection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -30,8 +30,8 @@
subplot_index=(0, 0),
)
display.plot_xsection_map(
None,
'ir_temperature',
None,
x='longitude',
y='latitude',
cmap='Greys',
Expand All @@ -40,8 +40,8 @@
subplot_index=(1, 0),
)
display.plot_xsection_map(
None,
'ir_temperature',
None,
x='longitude',
y='latitude',
cmap='Greys',
Expand All @@ -50,8 +50,8 @@
subplot_index=(0, 1),
)
display.plot_xsection_map(
None,
'ir_temperature',
None,
x='longitude',
y='latitude',
cmap='Greys',
Expand Down

0 comments on commit ad264c3

Please sign in to comment.