File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -329,15 +329,19 @@ def process(
329
329
if len (processed .keys ()) > 1 :
330
330
if merge :
331
331
### merge transfer functions according to merge dict
332
- processed ["combined" ] = self .merge_transfer_functions (
333
- processed
334
- )
332
+ combined_tf = self .merge_transfer_functions (processed )
333
+ combined_tf_id = self .local_station_id
334
+ if self .remote_station_id :
335
+ combined_tf_id += f"_{ self .remote_rr_station_id } "
336
+ combined_tf_id += "_combined"
337
+ combined_tf .tf_id = combined_tf_id
338
+ processed ["combined" ] = {"processed" : True , "tf" : combined_tf }
335
339
336
340
if save_to_mth5 :
337
341
### add tf to local MTH5
338
342
self ._add_tf_to_local_mth5 (processed )
339
343
340
- return tf_processed
344
+ return processed
341
345
342
346
def _validate_config (self , config ):
343
347
"""
You can’t perform that action at this time.
0 commit comments