Skip to content
Snippets Groups Projects
Commit d665fb10 authored by Carsten Hinz's avatar Carsten Hinz
Browse files

fiex bug in join, that reintroduced timeseries without any data

parent 47eaeee2
No related branches found
No related tags found
3 merge requests!11Creation of first beta release version,!10change in metadata of notebook,!9change in metadata of notebook
......@@ -166,7 +166,7 @@ class RegularGrid(GridDefinition):
cell_indices = self.as_cell_index(coords)
# will convert cell_indices to float as some nans ar present
data_with_indices = data.join(cell_indices.to_frame(GridDefinition.cell_index_name), how="outer")
data_with_indices = data.join(cell_indices.to_frame(GridDefinition.cell_index_name), how="inner")
return data_with_indices.groupby(GridDefinition.cell_index_name)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment