Skip to content

Commit

Permalink
remove extent calc used in diagnosing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
leifdenby committed Nov 26, 2024
1 parent 242d08b commit c1f706c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions neural_lam/vis.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ def plot_prediction(
)

# Plot pred and target
x = da_target.x.values
y = da_target.y.values
extent = [x.min(), x.max(), y.min(), y.max()]
for ax, da in zip(axes, (da_target, da_prediction)):
ax.coastlines() # Add coastline outlines
da.plot.imshow(
Expand Down

0 comments on commit c1f706c

Please sign in to comment.