Skip to content

Commit

Permalink
Avoid duplicate time conversion in CSVGroundTruthReader
Browse files Browse the repository at this point in the history
  • Loading branch information
sdhiscocks committed May 19, 2020
1 parent c282c45 commit 5be1e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stonesoup/reader/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def groundtruth_paths_gen(self):
state = GroundTruthState(
np.array([[row[col_name]] for col_name in self.state_vector_fields],
dtype=np.float_),
timestamp=self._get_time(row),
timestamp=time,
metadata=self._get_metadata(row))

id_ = row[self.path_id_field]
Expand Down

0 comments on commit 5be1e81

Please sign in to comment.