I am using Taoglas GPS (http://www.taoglas.com/images/product_images/original_images/CGGBP.35.6.A.02.pdf) Here are the photos(Dropbox - Error)They say it has good accuracy. The problem is I don't have a library for parsing data, and it seems no one has written one. I have tried TinyGPS(Release Version 13 · mikalhart/TinyGPS · GitHub), tinygpsplus(TinyGPS++ | Arduiniana) and Adafruit (Adafruit Ultimate GPS Breakout - 66 channel w/10 Hz updates [PA1616S] : ID 746 : $29.95 : Adafruit Industries, Unique & fun DIY electronics and kits). All are not working with this GPS, It seems each library is specific to the to its GPS model. I need the my Taoglas capture location and time at specific time. Any help on how I can do it, or code I can borrow ?
Now, I used the following code on arduino
void Setup(){}
void loop(){}
and I got the following data on serial port
$GLGSV,2,1,05,65,83,105,28,66,35,339,28,72,30,151,,76,21,346,60
$GLGSV,2,2,05,77,26,288,2551
$GNGLL,0105.60759,S,03701.70246,E,225625.00,A,A65
$GNZDA,225625.00,21,09,2015,00,0070
$GNRMC,225626.00,A,0105.60761,S,03701.70240,E,0.022,,210915,,,A7C
$GNVTG,,T,,M,0.022,N,0.041,K,A38
$GNGGA,225626.00,0105.60761,S,03701.70240,E,1,05,2.41,1535.0,M,-22.0,M,,43
$GNGSA,A,3,06,17,30,,,,,,,,,,3.79,2.41,2.931D
$GNGSA,A,3,65,66,,,,,,,,,,,3.79,2.41,2.931D
$GPGSV,2,1,07,05,15,316,,06,23,224,38,07,15,020,21,08,03,057,2079
$GPGSV,2,2,07,17,35,176,36,28,75,324,23,30,25,349,2748
$GLGSV,2,1,05,65,83,105,28,66,35,339,28,72,30,151,,76,21,346,60
$GLGSV,2,2,05,77,26,288,2551
$GNGLL,0105.60761,S,03701.70240,E,225626.00,A,A6B
$GNZDA,225626.00,21,09,2015,00,0073
$GNRMC,225627.00,A,0105.60764,S,03701.70233,E,0.023,,210915,,,A7D
$GNVTG,,T,,M,0.023,N,0.043,K,A*3B
$GNGGA,225627.00,0105.60764,S,03701.70233,E,1,05,2.41,1535.2,M,-22.0,M,,*4
How do I parse the data?