Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib-python/ioda_conv_engines.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def WriteGeoVars(self, GeoVars, GeoVarDims, GeoVarAttrs):
dims = GeoVarDims[VarName]
else:
# assume it is just nlocs
dims = ['nlocs']
dims = ['Location']
fillval = get_default_fill_val(Vvals.dtype)
# get fill value
if VarName in GeoVarAttrs.keys():
Expand Down Expand Up @@ -120,7 +120,7 @@ def WriteObsVars(self, ObsVars, VarDims, VarAttrs):
dims = VarDims[Vname]
else:
# assume it is just nlocs
dims = ['nlocs']
dims = ['Location']
fillval = get_default_fill_val(Vvals.dtype)
# get fill value
if VarKey in VarAttrs.keys():
Expand Down