PDA

View Full Version : Coloured Map



jmsmotorsport
February 6th, 2016, 10:02 PM
I have managed to get my maps displayed in colour but is there a way to change what number Min/Mid/Max is? I need it so when im road logging that a quick glance at the PC will give me an easy visual, say if its green the logged amount of data is 0 - 25 yellow is 25 - 49 and red 49-100?

joecar
February 8th, 2016, 05:16 AM
Can you post some screenshots of what you have...

Blacky
February 8th, 2016, 12:34 PM
Like this:

19233

Edit - Ah, I just realized you were actually asking how to control which values display in which color. That's not possible right now.


Regards
Paul

Blacky
February 8th, 2016, 12:42 PM
You could create a calculated PID that returns 1, 2 or 3 depending on what range the actual PID data falls in. Then map the calculated PID.

For example:
QUANT = lookup({SAE.TP},25,1,49,2,100,3)

The CALC.QUANT PID will have the following values:
When TP<=25, QUANT=1
When 25<TP<=49, QUANT=2
When 49<TP<=100, QUANT=3

If you plotted CALC.QUANT on a second scan tool map you would only ever get three values in the map: 1,2 and 3 and hence three colors 1=green, 2=yellow and 3=red.

Regards
Paul

jmsmotorsport
February 8th, 2016, 02:04 PM
Yep not real good at modified pids just yet. But sounds like the way to go. I have found a way around it sort of by just setting the considered empty if below 50 so if the square hasn't been hit 50 times its empty then will go green once at the 50 count.

joecar
February 8th, 2016, 02:19 PM
Yep not real good at modified pids just yet. But sounds like the way to go. I have found a way around it sort of by just setting the considered empty if below 50 so if the square hasn't been hit 50 times its empty then will go green once at the 50 count.If you need help with the calc pid, post your calc_pids.txt file here.

jmsmotorsport
February 8th, 2016, 02:24 PM
My pids file is just the one from the auto VE tutorial. I'm not by my laptop so can't post it.