Task #1614
Fixed bugs on realtime app
100%
Description
There are two main problems:
* Not visualize correctly the time scale in Local Time even when variable localtime in metada is True.
* Not send/receive correctly the data from client to server (RTI)
Related issues
History
#1 Updated by Luis Rodriguez almost 6 years ago
- Follows Task #1613: Running realtime app using docker added
#2 Updated by Luis Rodriguez almost 6 years ago
- Status changed from New to Resolved
- % Done changed from 80 to 100
The two problems was resolved:
* Not visualize correctly the time scale in Local Time even when variable localtime in metada is True.
Solution: In the script jroplot.js, the function use a conditional to decide whether is LT or UTC using localtime variable store in meta dict. The problem was the way to access, it was change from data.localtime(wrong) to data.meta.localtime(right).
* Not send/receive correctly the data from client to server (RTI)
Solution: In the script client.py, it manage thread for sending data from client to server. The lack of t.join() at end of each thread was problem for send data.
#3 Updated by Luis Rodriguez almost 6 years ago
- Precedes Task #1616: Schain v3 - modules, objects and send data realtime app added