Introduction
Introduction Statistics Contact Development Disclaimer Help
tcorrect ms to s - flytrexlog - read, manipulate, and plot flytrex logger data
git clone git://src.adamsgaard.dk/flytrexlog
Log
Files
Refs
LICENSE
---
commit ad248b5fa743cb400d401688004385d2e467b932
parent 19e44b07b564113d94959c5a74ffa5afe11c2dc7
Author: Anders Damsgaard <[email protected]>
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(-)
---
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]
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.