Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
akrherz committed Aug 6, 2024
1 parent 9faa9bf commit 0c216ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pyiem/iemre.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def get_grids(valid, varnames=None, cursor=None, table=None, domain: str = ""):
cursor.execute(
f"SELECT (gid / %s)::int as y, gid %% %s as x, {colsql} "
f"from {table} WHERE valid = %s",
(dom["nx"], dom["ny"], valid),
(dom["ny"], dom["nx"], valid),
)
data = {
key: np.full((dom["ny"], dom["nx"]), np.nan) for key in use_columns
Expand Down

0 comments on commit 0c216ce

Please sign in to comment.