Created
April 14, 2019 02:34
-
-
Save kudarisenmon/2ca397d202a9c9fade33a9fc163b0f91 to your computer and use it in GitHub Desktop.
ドラレコのnmeaをgpxに一括変換
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
| #!/bin/sh | |
| for filename in *.nmea; | |
| do gpsbabel -i nmea -f $filename -o gpx,gpxver=1.1 -F ${filename%.nmea}.gpx; | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment