From 2456064543200af1adfd17db0d1ccbb5f7441ca8 Mon Sep 17 00:00:00 2001 From: Joel Oskarsson Date: Mon, 30 Sep 2024 13:01:51 +0200 Subject: [PATCH] Remove erroneous ij indexing from readme example (#27) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index af27058..693ca5c 100644 --- a/README.md +++ b/README.md @@ -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