An open API service indexing awesome lists of open source software.

https://github.com/thipages/quickgpx

Quick gpx parser
https://github.com/thipages/quickgpx

gpx isotime parser php quick unixtime utc

Last synced: about 2 months ago
JSON representation

Quick gpx parser

Awesome Lists containing this project

README

        

# quickgpx
Quick GPX parser

### Installation
**composer** require thipages\quickgpx

### API
```php
QGpx::parse($filename,$withOriginalTime=false):array
```
returns an array of array defined as
- latitude
- longitude
- elevation
- UTC unix time
- iso time (if `$withOriginalTime` is set to `true`)

```php
QGpx::analyze($gpxAsArray):array
```
returns an associated array describing some stats properties
- `timeRange` : [ minUnixTime, maxUnixTime ]