ShevaXu / track-visualization

Visualize track data for outdoor amateurs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GPX TRACK VISUALIZATION

For outdoor amateurs :P

Intro

Data

A transformed gpx-geojson is like:

{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
        "name": "happy ruuning",
        "type": "trail_running",
        "time": "2023-06-03T22:29:16.000Z",
        "coordTimes": ["2023-06-03T22:29:16.000Z"]
      }
    }
  ],
  "geometry": {
    "type": "LineString",
    "coordinates": [[114.19872326776385, 27.52464727498591, 1515.5999755859375]]
  }
}

Map

This project uses mapbox-gl for map rendering (doc). The glossary is w.r.t. mapbox as well.

(from [1])

Refs

About

Visualize track data for outdoor amateurs


Languages

Language:JavaScript 94.2%Language:HTML 5.8%