Skip to content

Commit

Permalink
#92 Add argument of thermometer log path to merge function
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwakami committed Nov 22, 2023
1 parent 94c6c5f commit a590993
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mao_merge_45m/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def merge(
path_weather_zarr: Optional[Path] = None,
path_antenna_zarr: Optional[Path] = None,
path_sam45_zarr: Optional[Path] = None,
path_thermometer_zarr: Optional[Path] = None,
interpolation: str = "linear",
time_offset: int = 0,
overwrite: bool = False,
Expand All @@ -38,6 +39,7 @@ def merge(
path_weather_zarr: Path of the weather Zarr file.
path_antenna_zarr: Path of the antenna Zarr file.
path_sam45_zarr: Path of the SAM45 Zarr file.
path_thermometer_zarr: Path of the thermometer Zarr file.
interpolation: Method of interpolation of log data.
time_offset: Offset time in units of ms to add to correlator data
overwrite: Whether to overwrite the merged Zarr file if exists.
Expand Down Expand Up @@ -76,6 +78,7 @@ def merge(
path_weather_zarr,
path_antenna_zarr,
path_sam45_zarr,
path_thermometer_zarr,
):
if path is None:
continue
Expand Down

0 comments on commit a590993

Please sign in to comment.