Hello,
given the following input: - known longitudes/latitudes of 1..n locations - known distance between locations 1..n and another location "m"
how can I calculate the longitude/latitude of the location "m" ?
thanks in advance
|
2
|
Hello, given the following input: - known longitudes/latitudes of 1..n locations - known distance between locations 1..n and another location "m" how can I calculate the longitude/latitude of the location "m" ? thanks in advance |
||
|
|
|
|
Trilateration is what you want. This only requires 3 of your reference points, however the rest can be used to increase accuracy if you want to get really clever. The trickiest part is working with long/lat as opposed to Cartesian coordinates, especially as the earth is not a perfect sphere. |
||
|
|
|
|
This sounds like a basic latitude-longitude triangulation question. The common approaches are outlined in a Yahoo! Answers topic here. There are likely libraries to do this in many languages. A google search for "latitude longitude triangulation" plus your language of choice will likely reveal some existing code to use. "Geocoding" is another common task rolled into similar libraries, so that may be another useful keyword. Edit: As others have mentioned, "trilateration" seems to be the best term. However, depending on your data and requirements, there are simpler approximation solutions that may satisfy your requirements. The Yahoo! Answers post is quoted below for convenience:
|
|||
|
|
|
|
This is a trilateration problem. In your case, you have multiple points of reference, so you can minimize the sum of squared-errors between the given distances and those corresponding to the optimal position of m. |
|||
|
|