Thanks Thanks:  3
Showing results 1 to 1 of 1

Thread: To Fetch hotspot locations using open street map

  1. #1
    Senior Member Reputation: 809
    Join Date
    2013-10-02
    Location
    Chile
    Posts
    444


    1 out of 1 members found this post helpful.

    Default To Fetch hotspot locations using open street map

    There is a way with which we can fetch lat/long of all the hostspots or important locations like restaurants, hospital, railway stations, airports, casino,,,, etc using open street map by using API

    Link:
    https://overpass-turbo.eu/

    one example: i use the query to fetch all the train spots of the Latin America(you can choose specific country also)
    Screenshot 2023-10-17 084255.jpg




    Another example i want all firestation locations in brazil

    [out:json][timeout:25];
    // fetch area “Brazil” to search in
    {{geocodeArea:Brazil}}->.searchArea;
    // gather results
    (
    // query part for: “Test”
    node["amenity"="fire_station"](area.searchArea);
    way["amenity"="fire_station"](area.searchArea);
    relation["amenity"="fire_station"](area.searchArea);
    );
    // print results
    out body;
    >;
    out skel qt;




    the output can be extracted to kml. This data you can further use to see if all important spots have good coverage(3G/4G/5G) or not.



    note: All spots/locations in openstreet are classified in terms of "amentiy"
    https://wiki.openstreetmap.org/wiki/Category:Amenities.


    have a look and enjoy

    Cheers!!!
    Last edited by longtermevolution; 2023-10-17 at 09:00 PM

  2. Thanks techfolkcmr, kevin_h811, justdream thanked for this post
  3. # ADS
    Circuit advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many
     

Bookmarks

Bookmarks

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •