Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.09 KB | None | 0 0
  1. #RAW JSON
  2. [
  3.   {
  4.     "latitude": 51.247491,
  5.     "longtitude": 22.520798,
  6.     "timestamp": 1562979339998,
  7.     "horizontal_accuracy": 8.0012082736,
  8.     "course": 6.91280832,
  9.     "altitude": 725.5895027,
  10.     "speed": 11.34940719
  11.   },
  12.   {
  13.     "latitude": 51.246329,
  14.     "longtitude": 22.523834,
  15.     "timestamp": 1562979339998,
  16.     "horizontal_accuracy": 8.0012082736,
  17.     "course": 6.91280832,
  18.     "altitude": 725.5895027,
  19.     "speed": 11.34940719
  20.   }
  21. ]
  22.  
  23. #GEOJSON LineString
  24. {
  25.   "type": "FeatureCollection",
  26.   "features": [
  27.     {
  28.       "type": "Feature",
  29.       "geometry": {
  30.         "type": "LineString",
  31.         "coordinates": [
  32.           [
  33.             22.520798,
  34.             51.247491
  35.           ],
  36.           [
  37.             22.523834,
  38.             51.246329
  39.           ]
  40.         ]
  41.       },
  42.       "properties": {
  43.         "latitude": 51.247491,
  44.         "longtitude": 22.520798,
  45.         "timestamp": 1562979339998,
  46.         "horizontal_accuracy": 8.0012082736,
  47.         "course": 6.91280832,
  48.         "altitude": 725.5895027,
  49.         "speed": 11.34940719
  50.       }
  51.     }
  52.   ]
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement