Skip to content
9 changes: 4 additions & 5 deletions provider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ represented as a GeoJSON [`Feature`](https://tools.ietf.org/html/rfc7946#section
{
"type": "Feature",
"properties": {
"timestamp": 1529968782.421409
"timestamp": 1529968782421
},
"geometry": {
"type": "Point",
Expand All @@ -98,8 +98,7 @@ represented as a GeoJSON [`Feature`](https://tools.ietf.org/html/rfc7946#section

### Timestamps

References to `timestamp` imply floating-point seconds since [Unix epoch](https://en.wikipedia.org/wiki/Unix_time), such as
the format returned by Python's [`time.time()`](https://docs.python.org/3/library/time.html#time.time) function.
References to `timestamp` imply integer milliseconds since [Unix epoch](https://en.wikipedia.org/wiki/Unix_time). You can find the implementation of unix timestamp in milliseconds for your programming language [here](https://currentmillis.com/).

[Top][toc]

Expand Down Expand Up @@ -180,7 +179,7 @@ Routes must include at least 2 points: the start point and end point. Additional
"features": [{
"type": "Feature",
"properties": {
"timestamp": 1529968782.421409
"timestamp": 1529968782421
},
"geometry": {
"type": "Point",
Expand All @@ -193,7 +192,7 @@ Routes must include at least 2 points: the start point and end point. Additional
{
"type": "Feature",
"properties": {
"timestamp": 1531007628.3774529
"timestamp": 1531007628377
},
"geometry": {
"type": "Point",
Expand Down