You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
4.3 KiB

6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. # Compass
  2. Compass is a GPS tracking server that stores data in [flat files](https://github.com/aaronpk/QuartzDB).
  3. ![mapview](screenshot-mapview.jpg)
  4. ## Setup
  5. In the `compass` directory, copy `.env.example` to `.env` and fill in the details. Install the dependencies with composer.
  6. ```
  7. $ composer install
  8. ```
  9. If you're using the database queue driver (`QUEUE_DRIVER=database` defined in `.env`), you'll need to create the migration for that table:
  10. ```
  11. $ php artisan queue:table
  12. ```
  13. If you're using Redis, make sure you've installed the Redis server and set `QUEUE_DRIVER=redis`.
  14. You will need to run the database migrations to create the database schema:
  15. ```
  16. $ php artisan migrate
  17. ```
  18. Make sure the storage folder you've defined in `STORAGE_DIR` is writable by the web server (or by the PHP process if you're using php-fpm).
  19. To process jobs on the queue, run
  20. ```
  21. $ php artisan queue:listen
  22. ```
  23. For more details on how to configure this to run in the background, see https://lumen.laravel.com/docs/5.1/queues#running-the-queue-listener
  24. ## API
  25. After you create a tracking database, you can visit the database's settings page to get a read or write token. These tokens are used with the API to update or retrieve data.
  26. ### Writing
  27. To write to a database, make a POST request in JSON format with the following keys:
  28. `POST /api/input`
  29. * locations - a list of GeoJSON objects
  30. * token - the write token for the database (as a query string parameter or in the post body)
  31. The GeoJSON objects must have at least one property, "timestamp", which is can be any value that can be interpreted as a date. The object can have any additional properties you wish.
  32. The open source iOS [GPS Logger](https://github.com/aaronpk/GPS-Logger-iOS) will send data in this format by default.
  33. ```
  34. POST /api/input?token=XXXXXXX HTTP/1.1
  35. Content-type: application/json
  36. {
  37. "locations": [
  38. {
  39. "type": "Feature",
  40. "geometry": {
  41. "type": "Point",
  42. "coordinates": [-122.621, 45.535]
  43. },
  44. "properties": {
  45. "timestamp": "2017-01-01T10:00:00-0700",
  46. "horizontal_accuracy": 65
  47. }
  48. }
  49. ],
  50. "token": "XXXXXXX"
  51. }
  52. ```
  53. ### Reading
  54. To read a database, make a GET request as follows:
  55. #### Get all data for a calendar day
  56. `GET /api/query`
  57. * token - (required) the read token for the database
  58. * tz - (optional, default UTC) timezone string (e.g. America/Los_Angeles) which will be used to determine the absolute start/end times for the day
  59. * format - (optional, default "full") either "full" or "linestring"
  60. * full - return one JSON record for each result in the database
  61. * linestring - combine all the returned results into a GeoJSON linestring
  62. * date - specify a date to return all data on that day (YYYY-mm-dd format)
  63. #### Get the last location before a given timestamp
  64. `GET /api/last`
  65. * token - (required) the read token for the database
  66. * tz - (optional, default UTC) timezone string (e.g. America/Los_Angeles) which will be used to determine the absolute start/end times for the day
  67. * before - (optional, default to now) specify a full timestamp to return a single record before this date (the point returned will be no more than 24 hours before the given date)
  68. * geocode - (optional) if "true", then the location found will be reverse geocoded using [Atlas](https://atlas.p3k.io) to find the city and timezone at the location
  69. #### Find the last location matching a clock time
  70. `GET /api/find-from-localtime`
  71. This API method can help you answer the question "Where was I when my watch read 9:30am on July 15th?".
  72. Timestamps in Exif data do not include the timezone offset, and there is no standard mechanism for including the timezone offset in Exif. Some Canon cameras put the offset in a field, but not all of them do. You can use this method to find your location given an Exif date.
  73. * token - (required) the read token for the database
  74. * input - specify a clock time in the format `YYYY-mm-dd HH:MM:SS`
  75. This will query the database and find the closest matching location for when your clock read that time.
  76. ## Credits
  77. Compass icon by Ryan Spiering from the Noun Project.
  78. Screenshot of the map view by Sebastiaan Andeweg.
  79. ## License
  80. Copyright 2015 by Aaron Parecki
  81. Compass is licensed under the [Apache 2.0 license](http://opensource.org/licenses/Apache-2.0)
  82. Compass is built using the Lumen framework, which is licensed under the [MIT license](http://opensource.org/licenses/MIT)