Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kjnam committed Jun 29, 2023
1 parent eb898f3 commit 8d0bb67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion uxarray/core/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ def _populate_lonlat_coord(self):
data=nodes_degree[:, 1],
dims=["nMesh2_node"],
attrs={
"standard_name": "lattitude",
"standard_name": "latitude",
"long_name": "latitude of mesh nodes",
"units": "degrees_north",
})
Expand Down
4 changes: 2 additions & 2 deletions uxarray/io/_exodus.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def _read_exodus(ext_ds, grid_var_names):
data=ext_ds.coord[1],
dims=["nMesh2_node"],
attrs={
"standard_name": "lattitude",
"standard_name": "latitude",
"long_name": "latitude of mesh nodes",
"units": "degrees_north",
})
Expand All @@ -89,7 +89,7 @@ def _read_exodus(ext_ds, grid_var_names):
data=ext_ds.coordx,
dims=["nMesh2_node"],
attrs={
"standard_name": "lattitude",
"standard_name": "latitude",
"long_name": "latitude of mesh nodes",
"units": "degrees_north",
})
Expand Down
2 changes: 1 addition & 1 deletion uxarray/io/_scrip.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def _to_ugrid(in_ds, out_ds):
unq_lat,
dims=["nMesh2_node"],
attrs={
"standard_name": "lattitude",
"standard_name": "latitude",
"long_name": "latitude of mesh nodes",
"units": "degrees_north",
})
Expand Down

0 comments on commit 8d0bb67

Please sign in to comment.