What db for gps tracking

I am confused between using a common graph database (neo4j) and mongodb to track gps devices.

Functionality I need:

  • Track and project the path of each monitored device.
  • Long search by length / address on devices
  • Estimated traffic based on aggregated data from all devices
  • Some more intelligent things for which I will implement algorithms.
  • Must have a stable interface for Nodejs

Any suggestions?

Some answers here suggest using a GIS database, some offer a graph, can someone clarify the difference?

NoSQL and spatial data

+5
source share
3 answers

, mongodb + postgis.

+2

, sql, ​​ mongo, , , .

PostgreSQL PostGis. PostGIS - PostgreSQL. , OpenGIS " SQL". PostGIS, SQL.

+2

, geocouch couchdb, . , .

, GPS 5 3 , 6000 . , .., KML .. - . CouchDB.

As for the client library for node, I used cradle for some projects, and I am satisfied with the stability and ease of use. Just make sure that you do not cache during the development process, but change the views and that’s it.

+1
source

All Articles