[gpsnav] Correct nm calculation

master
storm64 2022-10-04 12:44:08 +02:00 committed by GitHub
parent 488d865218
commit a4c1348013
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ var loc = {
distance: [
require("locale").distance,
(m) => {
return (m / 1.852).toFixed(3) + "nm ";
return (m / 1852).toFixed(3) + "nm ";
}
]
};