Skip to content

Commit 5f5570d

Browse files
committed
Remove unneeded call to ravel
1 parent 4bdcb69 commit 5f5570d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/cartopy/mpl/gridliner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ def _axes_domain(self, nx=None, ny=None):
858858
x = np.concatenate((x.ravel(), xyp[:, 0]))
859859
y = np.concatenate((y.ravel(), xyp[:, 1]))
860860

861-
coords = np.column_stack((x.ravel(), y.ravel()))
861+
coords = np.column_stack((x, y))
862862

863863
in_data = desired_trans.transform(coords)
864864

0 commit comments

Comments
 (0)