Skip to content

Instantly share code, notes, and snippets.

View lizan's full-sized avatar

Lizan Zhou lizan

  • San Francisco Bay Area
  • 20:10 (UTC -07:00)
  • X @zlizan
View GitHub Profile
#!/usr/bin/python
# https://timwise.co.uk/2014/02/03/converting-kml-to-gpx-with-python/
# https://gist.github.com/timabell/8791116
import argparse
import xml.sax
parser = argparse.ArgumentParser(description='Convert annoying google android my tracks kml data to sensible gpx files')
parser.add_argument('input_file')