Monday 25 January 2016

overlapping features - Trilateration algorithm for n amount of points


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.



Answer



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]

Edit--


For large radii, more accurate (spherical or ellipsoidal) solutions can be found merely by replacing the Euclidean distance Norm[{x, y} - {x0, y0}] by a function to compute the spherical or ellipsoidal distance. In Mathematica this could be done, e.g., via


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

--end of edit


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.


No comments:

Post a Comment

arcpy - Changing output name when exporting data driven pages to JPG?

Is there a way to save the output JPG, changing the output file name to the page name, instead of page number? I mean changing the script fo...