Given a list of geocoded locations with an unknown error-value and a database of less noisy public corrections nearer the true location (most of which are reliable), how should I design an algorithm to take all the corrections into account to approximate the true location most accurately?
Both the stationary coordinates and the sensor readings are noisy, so it is similar to a geographic check-in problem. It reminds me of a known problem with multiple noisy sensors, where you model the noise and calculate the most probable value, but I don't recall the solution.
All coordinates are stored as the geography::POINT type in SQL Server 2008, so an efficient solution for that platform would be most useful.
Clarification: Coordinates are not temporal. Each reading comes from a unique sensor with no repeat measurements.