tcorrect ms to s - flytrexlog - read, manipulate, and plot flytrex logger data
(HTM) git clone git://src.adamsgaard.dk/flytrexlog
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit ad248b5fa743cb400d401688004385d2e467b932
(DIR) parent 19e44b07b564113d94959c5a74ffa5afe11c2dc7
(HTM) Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Sun, 1 Jun 2014 22:21:45 +0200
correct ms to s
Diffstat:
M flytrexlog.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/flytrexlog.py b/flytrexlog.py
t@@ -21,7 +21,7 @@ class csvfile:
self.max_ascent = log[1:,7]*f_to_m
self.max_speed = log[1:,8]*mph_to_ms
self.max_distance = log[1:,9]*f_to_m
- self.time = log[1:,10]*1000.0 # ms to s
+ self.time = log[1:,10]/1000.0 # ms to s
self.datetime_utc = log[1:,11]
self.datetime = log[1:,12]
self.sattelites = log[1:,13]