Skip to content
Snippets Groups Projects
Commit 9579d16d authored by Kien Le's avatar Kien Le
Browse files

Create data structure for GPS points

parent 6a4d0cfe
No related branches found
No related tags found
No related merge requests found
from typing import NamedTuple
class GPSPoint(NamedTuple):
last_timemark: str
fix_type: str
num_satellite_used: int
latitude: float
longitude: float
height: float
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment