Skip to content

Commit

Permalink
add time-stamped data to timed dataframe
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Nov 5, 2023
1 parent 54d3150 commit a7c48de
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sed/core/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1559,6 +1559,16 @@ def add_time_stamped_data(
time_stamp_column=time_stamp_column,
**kwds,
)
if self._timed_dataframe is not None:
if time_stamp_column in self._timed_dataframe:
self._timed_dataframe = add_time_stamped_data(
self._timed_dataframe,
time_stamps=time_stamps,
data=data,
dest_column=dest_column,
time_stamp_column=time_stamp_column,
**kwds,
)
metadata: List[Any] = []
metadata.append(dest_column)
metadata.append(time_stamps)
Expand Down

0 comments on commit a7c48de

Please sign in to comment.