New to mapping and trying to convert my downloaded garman.gpx file to .csv file. Intend to use csv to upload to my mapping database. My GPSbabel Code: [B]gpsbabel -w -i gpx -f "waypts.gpx" -o csv -F "waypts.csv"[/B] The typical <wpt> tag in the gpx file contains: <wpt lat="48.230667952" lon="-116.548649501"> <ele>630.505615</ele> <name>010</name> <cmt>15-DEC-13 4:22:27PM</cmt> <desc>15-DEC-13 4:22:27PM</desc> <sym>Flag, Blue</sym> </wpt> The conversion as code above produces: 48.23067, -116.54865, 15-DEC-13 4:22:27PM 48.23080, -116.54843, 15-DEC-13 4:33:22PM 48.23080, -116.54843, 15-DEC-13 4:33:31PM How can I get all the <wpt> elements (7) from the file for each waypoint?? Thanks for your help in advance R.