Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Proximity alert for locations saved at server

I did some search but could not find a suitable answer.

My App should compare with multiple locations for proximity. This means I will not be able to save all the locations into my app to confirm the proximity using locationManager. I want the proximity confirmation to be done in the server

What would be the best way to implement this?

Would it be sensible if the app asks for proximity confirmation every time the devices moves around?

like image 431
Ham Dong Kyun Avatar asked Apr 26 '16 22:04

Ham Dong Kyun


People also ask

What are proximity notifications?

Proximity alerts allow you to be automatically warned by the application if you go close enough to a location. The GPS positioning must available and turned on to use this feature.

What is the recommended radius for a geofence?

Choose the optimal radius for your geofence For best results, the minimum radius of the geofence should be set between 100 - 150 meters. When Wi-Fi is available location accuracy is usually between 20 - 50 meters. When indoor location is available, the accuracy range can be as small as 5 meters.


2 Answers

I would try a different approach, since location updates from GPS are made once per second, and I don't think it's a good idea to ask the server each second for proximity if you have a large amount of devices.
Think of this idea -

  1. Get the device's initial location and send it to the server.
  2. Decide on a sensible radius that the device will stay within it for the next 5-10 minutes. Also make sure that you don't have "too many" points in that radius, or you can narrow the radius in that case. It's up to you to decide the radius and the number of points, depending on your usage, number of points etc.
  3. Send form the server all the locations within that radius to the device.
  4. Let the device calculate the proximity by itself.
  5. When the device moves out of the initial radius - update the server and get the new relevant locations. This can be done easily - call the radius r. Save the initial location of the device, and calculate the distance between the current and initail location. When it is "close enough" to r - update the server.
like image 62
TDG Avatar answered Oct 14 '22 06:10

TDG


In your case, simply, you can send the received locations to your server and then make required calculations on server. But don't forget that you will be dealing with those questions

  • How many devices send location to server ?
  • How frequently each device send location to server ?

Also the responsibility of detecting a device has entered an area on the server

I think you can reduce the complexity of the all things by using geofencing api, link

  • No need to send each location to server.
  • Each device individually detects itself has entered or exited an area.

EDIT

Otherwise you will be doing entered/exited calculations on server for unlimited count of device, whenever each device's location has changed.

Before we were doing similar thing in my previous company, calculating enter/exit time and enter durations. but via real gps devices on buses

  • We have almost 100 points(geofence) in city. So you can think that those points are on a few routes

  • Each gps device on bus is sending location to server periodically.

  • When the bus has finished it's route, server reviews device's all received locations on the route.

  • Compares each geofence with each location of bus.

This is the real scenario. You can call it "server based geofencing".

like image 29
blackkara Avatar answered Oct 14 '22 04:10

blackkara