Message-ID: <CANVKczOkoms6Y-V039PCk-RJzMBi7Db3jXEUijBKVLv9J3y4Nw@mail.gmail.com>
Date: 2013-06-21T16:09:37Z
From: Barry Rowlingson
Subject: Import nmea files?
In-Reply-To: <c0ffb9c96f604c3692c11b6b9a93f391@EX-1-HT0.lancs.local>
And then I discovered the unicsv format:
$ gpsbabel -t -i nmea -f test.nmea -o unicsv -F out.csv
$ more out.csv
No,Latitude,Longitude,Speed,Course,Date,Time
1,41.549754,0.652421,0.0,196.5,2013/06/14,11:04:06.699999
Read that in with read.table or read.csv, parse the date and time, set
coordinates, set CRS...
Barry