TrackVision.net Forum Index TrackVision.net
Data Visualization for Motorsports
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

I2M Minilap gps logger

 
Post new topic   Reply to topic    TrackVision.net Forum Index -> I2M Dasy4 & DANAS
View previous topic :: View next topic  
Author Message
Blue Ice



Joined: 05 Jun 2009
Posts: 13
Location: Rome, Italy

PostPosted: Tue Sep 08, 2009 11:06 am    Post subject: I2M Minilap gps logger Reply with quote

hi,
i have the Minilap R I2M chrono, with also the additional DAE module, in this way i can record the gps data and other signals from the moto unit like RPM, throttle, rear wheel speed, and from this i can know the gear used.

i already make some video building a custom dashboard and configuring some simple data like gps position, gps speed, throttle position and RPM; you can watch it on this link: http://www.youtube.com/watch?v=T0U0AywW5RM

is it possibile having some more data from the gps coordinates, like decelleration slider?

i tried to use the pinto's program to interpolate data at 25hz, but using the interpolated data the throttle slider becomes "slower" and more linear, the gps speed, rpm and trackmap becomes really faster and smoother, i think there is a little problem with the calculating method for the other data, if you need i can post the log exported from danas.



Wink
Code:

Telemetry Time,GPS Longitude,GPS Latitude,Elevation,GPS Speed (kph),RPM,REAR (REAR),
56920000,12.368725,42.15831666666666,0.0,201.44,,,
56920070,,,,,12207.0,840.0,
56920270,,,,,12187.0,776.0,
56920470,,,,,12344.0,710.0,
56920670,,,,,12669.0,685.0,
56920880,,,,,12259.0,919.0,
56921000,12.36856166666667,42.158834999999996,0.0,206.55,,,
56921470,,,,,12323.0,920.0,
56921670,,,,,12425.0,920.0,
56921870,,,,,12405.0,926.0,
56922000,12.36832,42.159348333333334,0.0,213.42,,,
56922070,,,,,12508.0,910.0,
56922270,,,,,12446.0,891.0,
56922470,,,,,12492.0,867.0,
56922670,,,,,11374.0,377.0,
56922870,,,,,11068.0,922.0,
56923000,12.368020000000001,42.159855,0.0,217.22,,,
56923070,,,,,10984.0,923.0,
56923270,,,,,10987.0,923.0,
56923470,,,,,11151.0,924.0,
56923670,,,,,11121.0,921.0,
56923870,,,,,11161.0,899.0,
56924000,12.367701666666669,42.16034166666666,0.0,208.76,,,
56924070,,,,,11055.0,815.0,
56924270,,,,,10510.0,244.0,
56924470,,,,,10495.0,241.0,
56924670,,,,,10254.0,241.0,
56924870,,,,,10163.0,241.0,
56925000,12.36739833333333,42.16080333333333,0.0,200.92,,,
56925070,,,,,9989.0,240.0,
56925270,,,,,9884.0,241.0,
56925470,,,,,9776.0,241.0,
56925670,,,,,9630.0,240.0,
56925870,,,,,9482.0,240.0,
56926000,12.367141666666663,42.16125166666668,0.0,195.98,,,
56926470,,,,,9579.0,241.0,
56926670,,,,,9535.0,260.0,
56926870,,,,,9596.0,281.0,
56927000,12.366989999999998,42.161685000000006,0.0,186.22,,,
56927070,,,,,9564.0,292.0,
56927270,,,,,9451.0,289.0,
56927470,,,,,9501.0,326.0,
56927670,,,,,9401.0,310.0,
56927870,,,,,9321.0,310.0,
56928000,12.366996666666667,42.16210833333333,0.0,178.68,,,
56928070,,,,,9403.0,308.0,
56928270,,,,,9361.0,284.0,
56928480,,,,,9310.0,284.0,
56928680,,,,,9338.0,324.0,
56928880,,,,,9347.0,403.0,


in this case the REAR signal is the TPS data Wink
Back to top
View user's profile Send private message Visit poster's website
uthaug



Joined: 25 Feb 2008
Posts: 193
Location: Denmark

PostPosted: Wed Sep 09, 2009 11:18 am    Post subject: Reply with quote

Quote:
Also, as noted in the Readme.txt file, the somewhat complex nature of the CSV file, forced me to make it interpolate the telemetry as well, even though that is high sample rate already.
This sacrifies some accuracy, but it was the only way I could make it work.


This is what I wrote in an earlier post about Pinto.
What I try to explain in the Readme.txt file is that the way the log file is structured, forced me to make Pinto interpolate the telemetry data at the same Hz as the GPS data.
That means a lot of telemetry is skipped and replaced by interpolated values in the Pinto output.

So, it's not an error, it's just the best I can do Confused
I don't have the programming skills to make it better right now.
_________________
Rune Rasmussen - Motorcycle trackday racer
Q-Starz BT-Q1000P and Trackvision Pro
Maker of Pinto for Pandora - http://www.trackvision.net/phpBB2/viewtopic.php?t=586
Back to top
View user's profile Send private message Visit poster's website
Blue Ice



Joined: 05 Jun 2009
Posts: 13
Location: Rome, Italy

PostPosted: Thu Sep 10, 2009 11:39 am    Post subject: Reply with quote

hi uthaug,

yes, now i understood the meaning of the readme.txt...
so i'm tryng to find a solution using the raw data and not the exported csv format file... using the raw there are 2 streaming for each session, 1 for gps data, with a GPS$ prefix, and 1 for data acquisition with VALUE$ prefix...
i'm trying to make a software for interpolating the raw data using 2 kind of interpolation, 1 for gps and 1 for telemetry Wink


now, the other question... is there a way to have brake signal from gps values? because i have no sensor for braking signal... Sad
Back to top
View user's profile Send private message Visit poster's website
uthaug



Joined: 25 Feb 2008
Posts: 193
Location: Denmark

PostPosted: Thu Sep 10, 2009 1:26 pm    Post subject: Reply with quote

Blue Ice wrote:
now, the other question... is there a way to have brake signal from gps values? because i have no sensor for braking signal... Sad


If there's is not already a brake value (Pandora generates it for example)
then you can calculate it from the speed value.
if "previous speed value" is higher than "current speed value" then "brake value" = 1
or something similar.

I did this in a small track visualization program I experimented with (that I never finished).
_________________
Rune Rasmussen - Motorcycle trackday racer
Q-Starz BT-Q1000P and Trackvision Pro
Maker of Pinto for Pandora - http://www.trackvision.net/phpBB2/viewtopic.php?t=586
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    TrackVision.net Forum Index -> I2M Dasy4 & DANAS All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group