Use 5 decimals for coordinates in history view
Fixes #9 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
8d6cfbead9
commit
8186a9aab1
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ class HistoryView extends WatchUi.View {
|
||||||
}
|
}
|
||||||
|
|
||||||
private function _formatCoords(lat as Float, lon as Float) as String {
|
private function _formatCoords(lat as Float, lon as Float) as String {
|
||||||
return lat.format("%.4f") + ", " + lon.format("%.4f");
|
return lat.format("%.5f") + ", " + lon.format("%.5f");
|
||||||
}
|
}
|
||||||
|
|
||||||
private function _formatTimestamp(ts as Number) as String {
|
private function _formatTimestamp(ts as Number) as String {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue