@ZMS i’ve figured out a solution
So below this line (line 132 for me, the end of a block of lines starting with “isset”)
isset($row['tisb']) ? $ac_tisb = implode(' ', $row['tisb']) : $ac_tisb = '';
add the following 3 lines
isset($row['gs']) ? $ac_speed = $row['gs'] : false;
isset($row['baro_rate']) ? $ac_vert_rate = $row['baro_rate'] : false;
isset($row['alt_baro']) ? $ac_altitude = $row['alt_baro'] : false;
Basically without altitude the filter for adding stuff to the database does not trigger.
Also make sure you have the minlat and maxalt and stuff set properly
@TomMuc
I guess you don’t need a pull request on github for this do you?
Otherwise i can make one.
It also spits out nac_p instead of nuc_p now but i don’t know if it is the same data format.