From 67b3a775f24824a5cbca207864d5fa566a16b0fc Mon Sep 17 00:00:00 2001 From: David Minton Date: Mon, 5 Dec 2022 15:43:00 -0500 Subject: [PATCH] Added helpful comment --- src/netcdf/netcdf.f90 | 1 + 1 file changed, 1 insertion(+) diff --git a/src/netcdf/netcdf.f90 b/src/netcdf/netcdf.f90 index a27f59a4d..00e18bb1c 100644 --- a/src/netcdf/netcdf.f90 +++ b/src/netcdf/netcdf.f90 @@ -292,6 +292,7 @@ module subroutine netcdf_initialize_output(self, param) ! Take the file out of define mode call check( nf90_enddef(nciu%id), "netcdf_initialize_output nf90_enddef" ) + ! Add in the space dimension coordinates call check( nf90_put_var(nciu%id, nciu%space_varid, nciu%space_coords, start=[1], count=[NDIM]), "netcdf_initialize_output nf90_put_var space" ) end associate