Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jun 27, 2023
1 parent 981d2b5 commit a9ed0db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xpublish_wms/wms/get_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,8 @@ def render_sgrid(
x_sel, y_sel = to_mercator.transform(x_sel, y_sel)

verts = pd.DataFrame(
np.stack((x_sel, y_sel, data_sel)).T, columns=["x", "y", "z"],
np.stack((x_sel, y_sel, data_sel)).T,
columns=["x", "y", "z"],
)
triang = Delaunay(verts[["x", "y"]].values)
tris = pd.DataFrame(triang.simplices, columns=["v0", "v1", "v2"])
Expand Down

0 comments on commit a9ed0db

Please sign in to comment.