Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

I need to find algorithm that can calculate centroid A (aka gravity center, geometric center, center of mass) from the figure where circles T1,T2,T3,T4,T5,..,Tn intersect AND length of line R from centroid to farthest corner of mentioned figure

Following information is given:

  • T1 Latitude = 56.999883 Longitude = 24.144473 Radius = 943
  • T2 Latitude = 57.005352 Longitude = 24.151168 Radius = 857
  • T3 Latitude = 57.005352 Longitude = 24.163356 Radius = 714
  • T4 Latitude = 56.999042 Longitude = 24.168506 Radius = 714
  • T5 Latitude = 56.994226 Longitude = 24.15709 Radius = 771

Result should look like this: A Latitude = XX.XXXXXXX Longitude = XX.XXXXXXX Radius = XX

enter image description here

As you probably already figured out, I am working on software that can find device location by closest Wifi Access Points or Mobile Base stations, as number of access points or base stations might change, I need an algorithm that can adapt to uncertain amount of points.

There are some similar questions here and here, but none of them exactly answers to my question.

Thanks!

share|improve this question
what language are you working in? – WolfOdrade Nov 8 '12 at 23:35
Mostly PHP, little bit of JavaScript. I guess I had to mention this before but I am a web developer and to understand Whuber's answer I will have to find a mathematician. – Kārlis Baumanis Nov 8 '12 at 23:54
Are the radii derived from relative signal strengths? – Kirk Kuykendall Nov 9 '12 at 2:25
Yes! Actually Radiuses are in dBm – Kārlis Baumanis Nov 9 '12 at 8:32
I expected something like that: the nice thing is that the signal strengths will decay with (almost) an inverse square law and will be measured (typically) with a constant relative error, at least within an effective working range. This implies the radii will be measured with an error proportional to their inverse squares: this can be incorporated directly into the weighted least squares solution by adjusting the weights accordingly. – whuber Nov 9 '12 at 19:37

1 Answer

up vote 14 down vote accepted

The radius measurements surely are subject to some error. I would expect the amount of error to be proportional to the radii themselves. Let us assume the measurements are otherwise unbiased. A reasonable solution then uses weighted nonlinear least squares fitting, with weights inversely proportional to the squared radii.

This is standard stuff available in (among other things) Python, R, Mathematica, and many full-featured statistical packages, so I will just illustrate it. Here are some data obtained by measuring the distances, with relative error of 10%, to five random access points surrounding the device location:

Data table

Mathematica needs just one line of code and no measurable CPU time to compute the fit:

fit = NonlinearModelFit[data, Norm[{x, y} - {x0, y0}], {x0, y0}, {x, y}, Weights -> 1/observations^2]

One advantage of using a statistical technique like this is that it can produce confidence intervals for the parameters (which are the coordinates of the device) and even a simultaneous confidence ellipse for the device location.

ellipsoid = fit["ParameterConfidenceRegion", ConfidenceLevel -> 0.95];
fit["ParameterConfidenceIntervalTable", ConfidenceLevel -> 0.95]

Confidence interval table

It is instructive to plot the data and the solution:

Graphics[{Opacity[0.2], EdgeForm[Opacity[0.75]], White, Disk[Most[#], Last[#]] & /@ data, 
  Opacity[1], Red, ellipsoid, 
  PointSize[0.0125], Blue, Point[source], Red, Point[solution],
  PointSize[0.0083], White, Point @ points}, 
  Background -> Black, ImageSize -> 600]

Map

  • The white dots are the (known) access point locations.

  • The large blue dot is the true device location.

  • The gray circles represent the measured radii. Ideally, they would all intersect at the true device location--but obviously they do not, due to measurement error.

  • The large red dot is the estimated device location.

  • The red ellipse demarcates a 95% confidence region for the device location.

The shape of the ellipse in this case is of interest: the locational uncertainty is greatest along a NW-SE line. Here, the distances to three access points (to the NE and SW) barely change and there is a trade-off in errors between the distances to the two other access points (to the north and southeast).

(A more accurate confidence region can be obtained in some systems as a contour of a likelihood function; this ellipse is just a second-order approximation to such a contour.)

When the radii are measured without error, all the circles will have at least one point of mutual intersection and--if that point is unique--it will be the unique solution.

This method works with two or more access points. Three or more are needed to obtain confidence intervals. When only two are available, it finds one of the points of intersection (if they exist); otherwise, it selects an appropriate location between the two access points.

share|improve this answer
2  
Well done Bill! – Dan Patterson Nov 8 '12 at 20:51
Can someone please show how to do that in Python? I'm not familiar enough with Mathematica to easily translate this 'standard' stuff ;) I am working on a very similar project in Python (although in my project the radii each have an error of a fixed 100 meters). – jcm Nov 17 '12 at 7:16
   
@jcm There are many promising hits at google.com/search?q=python+nonlinear+least+squares. – whuber Nov 17 '12 at 22:36
that's so helpful. thanks. – jcm Nov 18 '12 at 2:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.