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
- Host: GitHub
- URL: https://github.com/thipages/quickgpx
- Owner: thipages
- License: mit
- Created: 2020-08-14T06:12:31.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-16T09:34:41.000Z (almost 5 years ago)
- Last Synced: 2025-02-08T10:20:21.876Z (3 months ago)
- Topics: gpx, isotime, parser, php, quick, unixtime, utc
- Language: PHP
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 ]