Algorithm to find all Latitude Longitude locations within a certain distance from a given Lat Lng location

前端 未结 11 582
傲寒
傲寒 2020-12-02 04:32

Given a database of places with Latitude + Longitude locations, such as 40.8120390, -73.4889650, how would I find all locations within a given distance of a specific locatio

相关标签:
11条回答
  • 2020-12-02 04:54

    PostgreSQL GIS extensions might be helpful - as in, it may already implement much of the functionality you are thinking of implementing.

    0 讨论(0)
  • 2020-12-02 04:54

    Since you say that any language is acceptable, the natural choice is PostGIS:

    SELECT * FROM places
    WHERE ST_DistanceSpheroid(geom, $location, $spheroid) < $max_metres;
    

    If you want to use WGS datum, you should set $spheroid to 'SPHEROID["WGS 84",6378137,298.257223563]'

    Assuming that you have indexed places by the geom column, this should be reasonably efficient.

    0 讨论(0)
  • 2020-12-02 04:55

    Tank´s Yogihosting

    I have in my database one goups of tables from Open Streep Maps and I tested successful.

    Distance work fine in meters.

    SET @orig_lat=-8.116137;
    SET @orig_lon=-34.897488;
    SET @dist=1000;
    
    SELECT *,(((acos(sin((@orig_lat*pi()/180)) * sin((dest.latitude*pi()/180))+cos((@orig_lat*pi()/180))*cos((dest.latitude*pi()/180))*cos(((@orig_lon-dest.longitude)*pi()/180))))*180/pi())*60*1.1515*1609.344) as distance FROM nodes AS dest HAVING distance < @dist ORDER BY distance ASC LIMIT 100;
    
    0 讨论(0)
  • 2020-12-02 04:56

    As biziclop mentioned, some sort of metric space tree would probably be your best option. I have experience using kd-trees and quad trees to do these sorts of range queries and they're amazingly fast; they're also not that hard to write. I'd suggest looking into one of these structures, as they also let you answer other interesting questions like "what's the closest point in my data set to this other point?"

    0 讨论(0)
  • 2020-12-02 04:58

    Start by Comparing the distance between latitudes. Each degree of latitude is approximately 69 miles (111 kilometers) apart. The range varies (due to the earth's slightly ellipsoid shape) from 68.703 miles (110.567 km) at the equator to 69.407 (111.699 km) at the poles. The distance between two locations will be equal or larger than the distance between their latitudes.

    Note that this is not true for longitudes - the length of each degree of longitude is dependent on the latitude. However, if your data is bounded to some area (a single country for example) - you can calculate a minimal and maximal bounds for the longitudes as well.


    Continue will a low-accuracy, fast distance calculation that assumes spherical earth:

    The great circle distance d between two points with coordinates {lat1,lon1} and {lat2,lon2} is given by:

    d = acos(sin(lat1)*sin(lat2)+cos(lat1)*cos(lat2)*cos(lon1-lon2))
    

    A mathematically equivalent formula, which is less subject to rounding error for short distances is:

    d = 2*asin(sqrt((sin((lat1-lat2)/2))^2 +
        cos(lat1)*cos(lat2)*(sin((lon1-lon2)/2))^2))
    

    d is the distance in radians

    distance_km ≈ radius_km * distance_radians ≈ 6371 * d
    

    (6371 km is the average radius of the earth)

    This method computational requirements are mimimal. However the result is very accurate for small distances.


    Then, if it is in a given distance, more or less, use a more accurate method.

    GeographicLib is the most accurate implementation I know, though Vincenty inverse formula may be used as well.


    If you are using an RDBMS, set the latitude as the primary key and the longitude as a secondary key. Query for a latitude range, or for a latitude/longitude range, as described above, then calculate the exact distances for the result set.

    Note that modern versions of all major RDBMSs support geographical data-types and queries natively.

    0 讨论(0)
  • 2020-12-02 04:59

    you may check this equation i think it will help

    SELECT id, ( 3959 * acos( cos( radians(37) ) * cos( radians( lat ) ) * cos( radians( lng ) - radians(-122) ) + sin( radians(37) ) * sin( radians( lat ) ) ) ) AS distance FROM markers HAVING distance < 25 ORDER BY distance LIMIT 0 , 20;
    
    0 讨论(0)
提交回复
热议问题