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 b95e72b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ channels:
dependencies:
- python>=3.10
- sphinx
- bottleneck
- ca-certificates
- openssl
- myst-parser
Expand Down
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 b95e72b

Please sign in to comment.