Skip to content

Commit

Permalink
Remove erroneous ij indexing from readme example (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
joeloskarsson authored Sep 30, 2024
1 parent 1d1407b commit 2456064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ import numpy as np
import weather_model_graphs as wmg

# define your (x,y) grid coodinates
xy_grid = np.meshgrid(np.linspace(0, 1, 32), np.linspace(0, 1, 32), indexing='ij')
xy_grid = np.meshgrid(np.linspace(0, 1, 32), np.linspace(0, 1, 32))
xy_grid = np.stack(xy_grid, axis=0)

# create the full graph
Expand Down

0 comments on commit 2456064

Please sign in to comment.