I’m currently trying to visualize time-series data in paraview. This data is collected over a period of several days.
I know it’s possible to create an python-annotation in the view that displays the time, but is there a way to have the time displayed in a different format, say ISO 8601 in the GUI?
This is how it currently looks (timestamp is in Unix time, not very readable).
Not all of my data starts at the same time, so it would be valuable if the timestamps would not reference a relative time to some start time, but an absolute time.
It’s not really about transforming the timestamp, but about showing a more readable value in the GUI (not only in the time controls, but also in the animation view and for the x-axis of graphs).
Is there an option available like returning an array of string instead of an array of float in the RequestInformation step or do the timestamps need to be float values?