Open simkosal opened 2 years ago
Same issue with negative value. Any update / advice ?
Same issue
I used this hacky solution to fix the heading. Its a temporary hack.
double sanitizeHeading(double? hd) {
if (hd == null) return 0;
if (hd < 0) return 360 + hd;
if (hd > 0) return hd;
return hd;
}
The heading is not accuracy
https://i.imgur.com/1vAbrw5.jpg