navstar: Simple navigation application#77
Merged
ThomasFarstrike merged 1 commit intoMicroPythonOS:mainfrom Mar 11, 2026
Merged
Conversation
It can display GPS information, show arrow to selected point and save track. It can use several location sources, including /dev/gnss0; by default, it is configured with fake nmea source.
jedie
reviewed
Mar 6, 2026
| import math | ||
| import re | ||
|
|
||
| from pcanvas import * |
Contributor
Author
There was a problem hiding this comment.
This was originally copy/pasted code, so this should be improvement. Eventually, it will improve.
Contributor
There was a problem hiding this comment.
copy/pasted code? Then you should add credits/license info, too.
Contributor
Author
There was a problem hiding this comment.
I'm copy/pasting myself. I'm allowed to do that :-).
jedie
reviewed
Mar 6, 2026
| """ | ||
| EGT (Editable GPS Track) - a minimal plaintext format. | ||
|
|
||
| So... recording to gpx is not really suitable, as that format is hard to modify by tools such as head/tail/tac. It also has trailer, so if you reboot while recording, you would end up with invalid file. |
Contributor
There was a problem hiding this comment.
I have used https://github.com/geopy/geopy for this. Maybe it's directly usable under micropython?
Contributor
|
Nice! If you make any improvements, don't hesitate to send a pull request! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
It can display GPS information, show arrow to selected point and save track.
It can use several location sources, including /dev/gnss0; by default, it is configured with fake nmea source.