Remote controlled batch loading #887
Unanswered
TheOtherMarcus
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to figure out if it is possible to remote control the loading of logged time series data. I want to do the same thing the CSV plugin does, but over websockets or similar channel. Any ideas?
When I stream with websockets, which variable is by default used as the x-axis? Does PlotJuggler measure the time or does it use a time variable found in the data?
Edit 1:
After some experimentation with websockets I see that it basically does what I want. What is missing is
There is a bug in the websocket dialog where "bson" is preselected but the fields to select which variable to use as time is not shown. "bson" has to be selected explicitly for the dialog to show the correct fields.
Edit 2:
I should be able to use function(tracker_time) to "delete points" and start over with a clean slate.
Edit 3:
It seems I can iterate over all series with GetSeriesNames() and TimeseriesView.find(), but the clear() method is not defined on series returned by find(), only newly created series. Why is that so? Just an omission?
Beta Was this translation helpful? Give feedback.
All reactions