Prepare a Java program to read .GPX files
Project Description:
Prepare a Java program (GPX_Tracks_to_Text.Java) for Windows to:
- Read every .GPX file in a provide drive and folder with the option of reading all .GPX files in all further sub-folders).
- Extract each Track Point (
- An insertion sort will be used to get rid of duplicate entries upon writing to the text file, or after all the data has been successively written to the text file, it will be sorted with duplicate entries then removed.
- There can be many thousands on lines in the output text file.
- Longitude and Latitude values must have 9 decimals - no more - no less.
Example output in file OUTPUT.TXT
lat="-3.570191701" lon="33.557106557" 2005-11-25T05:23:51Z
lat="-3.567758677" lon="33.557273557" 2005-11-25T05:24:02Z
lat="-3.567309673" lon="33.557305557" 2005-11-25T05:24:04Z
lat="-3.563630636" lon="33.557553557" 2005-11-25T05:24:20Z
lat="-3.565019650" lon="33.557461557" 2005-11-25T05:24:14Z
lat="-3.557086570" lon="33.558000558" 2005-11-25T05:24:50Z
Skills required:
Java