Fixes to the log and screen rendering of the geo coordinates.

This commit is contained in:
teixeluis 2021-06-23 19:54:34 +01:00
parent 2ceb49e4f2
commit 97349b06ef
2 changed files with 37 additions and 6 deletions

View file

@ -158,6 +158,12 @@ int cpr_NL_approx(float lat) {
}
int cpr_NL(float lat) {
// TODO prove that the approximate function is good
// enough for the precision we need. Uncomment if
// that is true:
//return cpr_NL_approx(lat);
return cpr_NL_precise(lat);
}