Skip to content

MartianHiker/gpx_to_array

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

gpx_to_array

takes a gpx file as a string and returns the data as an array

Install

npm install gpx_to_array

Usage Example

The package is very straighforward and simple to use:

const gpx_to_array = require("gpx_to_array")
let result = gpx_to_array(xml_file_as_string)

Expected Output

You should expect the following JSON array to be returned after calling this package

{coordinates: [...], _params: {LON: 0, LAT: 1, ELEV: 2, TIMESTAMP: 3}, errors: errors}

coordinates

this is an array of array like the following:

[ [lat, lon, elevation, timestamp], .... , [lat, lon, elevation, timestamp] ]

what's the point of _params

Params are needed so you don't need to remember the position of lat, lon and so on in the array. You can retrieve information from coordinates like the following:

let result = gpx_to_array(xml_file_as_string)

const LON = result._params.LON
const LAT = result._params.LAT
const ELEV = result._params.ELEV
const TIMESTAMP = result._params.TIMESTAMP

result.coordinates.forEach(coordinate => {
	...
	let coordinate_lon = coordinate[LON] // you don't need to remeber that lon is at position 0
	let coordinate_lat = coordinate[LAT] // you don't need to remeber that lat is at position 1
	...
})

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published