Skip to content

Commit

Permalink
interim_l3 in gridded
Browse files Browse the repository at this point in the history
  • Loading branch information
hgloeckner committed Aug 12, 2024
1 parent 2580f1a commit 42002b9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/halodrops/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,6 @@ def iterate_Sonde_method_over_dict_of_Sondes_objects(


def sondes_to_gridded(sondes: dict, config: configparser.ConfigParser):
print(sondes)
gridded = Gridded(sondes)
gridded.concat_sondes()
return gridded
Expand Down
2 changes: 1 addition & 1 deletion src/halodrops/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1088,7 +1088,7 @@ def concat_sondes(self):
"""
function to concatenate all sondes using the combination of all measurement times and launch times
"""
list_of_l2_ds = [sonde._interim_l3_ds for sonde in self.sondes.values()]
list_of_l2_ds = [sonde._prep_l3_ds for sonde in self.sondes.values()]
combined = xr.combine_by_coords(list_of_l2_ds)
object.__setattr__(self, "_interim_l3_ds", combined)
return self

0 comments on commit 42002b9

Please sign in to comment.