Questions tagged [geospatial]
The geospatial tag has no summary.
32 questions
3votes
4answers
734views
How much better is using quad trees than simple relational database for storing location data?
I want to store and find back driver location data in the standard design uber/lyft problem. I was researching about possible system design. Several videos and tutorials usually describe storing ...
0votes
1answer
107views
designing an order management and dispatch management system for couriers
I'm studying to develop an order management system and order dispatch for the couriers, this is a personal project, for study purposes. Some important points about the deliverymen, they are bikers and ...
1vote
1answer
94views
Strategy for dealing with geolocation and geocoding inaccuracies
For a mobile app, we are using the Google APIs for geolocation and geocoding. The basic use case is to find entities within a certain radius (in the range of a couple of kilometers) of each other. ...
1vote
1answer
566views
How to represent Spacial Time Series data in json clearly?
Currently, I have an application generating time series spacial data. The data is weather data with coordinates and a time of reading. I would like to receive chunks of the data in a time series way ...
1vote
2answers
3kviews
Patterns for keeping two states in sync?
A problem been thinking on... I'm on an application that involves two web maps, both showing the same data but in slightly different situations basically (say a different basemap or projection, etc)......
1vote
0answers
41views
Collection and delivery algorithm
I need some help finding references to solutions to this problem. This is the basis of a real-world application I'm working on, rather than an academic problem. There are 4 main objects: Water (...
-1votes
1answer
186views
How can I efficiently find out if X is in any of N ranges of L-R numbers?
This is part of a bigger problem, which is to find out if point XYZ exists in any of n (XYZ -> XYZ) "boxes". I'm currently splitting up the problem into a smaller one, by focusing on one dimension ...
-3votes
2answers
165views
Options for managing a multi-purpose web service?
I have a web service that serves two purposes. On a weekly basis, it syncs records from the GIS DB to a workorder management system's database. On a continual basis, it serves up the records to a web ...
2votes
1answer
85views
Storing and filtering spatial data within RAM
I'm trying to figure out what's the proper way of storing and filtering spatial data inside a running program. I have a 2D map of theoretically infinite size. Users generate objects which are placed ...
0votes
2answers
98views
What are formats to store geographic maps for a robot to travel point A to point B
Very beginner. Need to compute route from A to B for a robot. i would like to know how to store area map and compute the route. I can compute shortest path etc using algorithms e.g. dijkstra. What ...
0votes
1answer
64views
Evaluate http reqres vs websockets for geolocation based broadcasts
My use case is that I have a real-time broadcast app where users get feed items based on a geolocation, i.e. a user will receive posts that were broadcasted from within a user-defined radius where (s)...
3votes
0answers
543views
Self hosting map vector tiles for web application
I'm building a web application, which involves (currently) a REST backend and a frontend SPA. The backend is hosting massive geo-enabled data, and the frontend is displaying it on a mapbox map. I'm ...
1vote
2answers
570views
Handle country specific properties such as price and currency
I have an architecture front-end / back-end, specifically an Android app and a backend. I want that the app user can see different prices and currencies depending on their geo-localization. So my ...
4votes
0answers
104views
How to store data at various point in time? [closed]
What are the techniques and technologies that people use to store spatial data over time that performs fast when querying? For example, you have a map where people add data at certain locations over ...
2votes
0answers
910views
Android intent: Using ?q= in a geo: URI [closed]
I noticed that the Airbnb Android app sends such an intent to open a map app at a particular latitude/longitude: geo:0:0?q=77.77%2C88.88 From my simplistic point of view, they should use the standard ...