Skip to content
Snippets Groups Projects
Commit 6110259d authored by Bert Palm's avatar Bert Palm 🎇
Browse files

empty series fix

parent 0b1b1390
No related branches found
No related tags found
2 merge requests!193Release 1.4,!188Release 1.4
Pipeline #5261 passed with stage
in 6 minutes and 21 seconds
...@@ -74,6 +74,9 @@ def harmWrapper(heap={}): ...@@ -74,6 +74,9 @@ def harmWrapper(heap={}):
# now we can manipulate it without loosing information gathered before harmonization # now we can manipulate it without loosing information gathered before harmonization
dat_col, flagger_merged_clean, _ = _outsortCrap(dat_col, field, flagger_merged, drop_flags=drop_flags) dat_col, flagger_merged_clean, _ = _outsortCrap(dat_col, field, flagger_merged, drop_flags=drop_flags)
if dat_col.empty:
return data, flagger
# interpolation! (yeah) # interpolation! (yeah)
dat_col, chunk_bounds = _interpolateGrid( dat_col, chunk_bounds = _interpolateGrid(
dat_col, dat_col,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment