├── .gitignore ├── LICENSE ├── README.md ├── bin ├── gopro2gpx │ └── gopro2gpx.go ├── gopro2json │ └── gopro2json.go └── gpmdinfo │ └── gpmdinfo.go ├── gpmf ├── gpmf.go └── gpmf_test.go └── telemetry ├── accl.go ├── gps5.go ├── gpsf.go ├── gpsp.go ├── gpsu.go ├── gyro.go ├── reader.go ├── scal.go ├── telemetry.go ├── tmpc.go └── tsmp.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/README.md -------------------------------------------------------------------------------- /bin/gopro2gpx/gopro2gpx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/bin/gopro2gpx/gopro2gpx.go -------------------------------------------------------------------------------- /bin/gopro2json/gopro2json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/bin/gopro2json/gopro2json.go -------------------------------------------------------------------------------- /bin/gpmdinfo/gpmdinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/bin/gpmdinfo/gpmdinfo.go -------------------------------------------------------------------------------- /gpmf/gpmf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/gpmf/gpmf.go -------------------------------------------------------------------------------- /gpmf/gpmf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/gpmf/gpmf_test.go -------------------------------------------------------------------------------- /telemetry/accl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/telemetry/accl.go -------------------------------------------------------------------------------- /telemetry/gps5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/telemetry/gps5.go -------------------------------------------------------------------------------- /telemetry/gpsf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/telemetry/gpsf.go -------------------------------------------------------------------------------- /telemetry/gpsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/telemetry/gpsp.go -------------------------------------------------------------------------------- /telemetry/gpsu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/telemetry/gpsu.go -------------------------------------------------------------------------------- /telemetry/gyro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/telemetry/gyro.go -------------------------------------------------------------------------------- /telemetry/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/telemetry/reader.go -------------------------------------------------------------------------------- /telemetry/scal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/telemetry/scal.go -------------------------------------------------------------------------------- /telemetry/telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/telemetry/telemetry.go -------------------------------------------------------------------------------- /telemetry/tmpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/telemetry/tmpc.go -------------------------------------------------------------------------------- /telemetry/tsmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stilldavid/gopro-utils/HEAD/telemetry/tsmp.go --------------------------------------------------------------------------------