|
| RE: Editing GPS data 6/14/10 9:11 AM as a reply to Matt Brost. If you're into analysis, this may work for you.
I did it in excel, by choosing a point (in Google Earth, then finding that sample in the data rows in excel), then adding a column for distance (and cumulative distance for a different reason). Then I added a column that tested for a sample point being within 40 feet (in 1s/sec native phone mode), and flagged the row as being a new lap start if it were within that distance. You could replace 40 with any other number...
=IF(40 > CONVERT(ACOS(COS(RADIANS(90-G$2)) *COS(RADIANS(90-G121)) +SIN(RADIANS(90-G$2)) *SIN(RADIANS(90-G121)) *COS(RADIANS(H$2-H121))) *(6371+(I121/1000)), "km", "ft"),1,0)
(column G is lat, H is long, I is alt) |
| |