Skip to content

Instantly share code, notes, and snippets.

@lambdaupb
lambdaupb / mapswithme_track.py
Created January 22, 2017 13:00
read gps_track.dat from recent track feature of MapsWithMe app
from collections import namedtuple
import struct
import sys
from enum import Enum
class PointSource(Enum):
EAppleNative=0
EWindowsNative=1
EAndroidNative=2
EGoogle=3