From 8d0bb67c932fccad3b64aa0161f80ff218043977 Mon Sep 17 00:00:00 2001 From: Kijin Nam Date: Thu, 29 Jun 2023 09:31:34 -0700 Subject: [PATCH] Fix typos --- uxarray/core/grid.py | 2 +- uxarray/io/_exodus.py | 4 ++-- uxarray/io/_scrip.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/uxarray/core/grid.py b/uxarray/core/grid.py index 5fec06d2e..4de11451f 100644 --- a/uxarray/core/grid.py +++ b/uxarray/core/grid.py @@ -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", }) diff --git a/uxarray/io/_exodus.py b/uxarray/io/_exodus.py index 49eea65f3..fee79b74a 100644 --- a/uxarray/io/_exodus.py +++ b/uxarray/io/_exodus.py @@ -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", }) @@ -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", }) diff --git a/uxarray/io/_scrip.py b/uxarray/io/_scrip.py index 68a16338a..d19f779f4 100644 --- a/uxarray/io/_scrip.py +++ b/uxarray/io/_scrip.py @@ -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", })