Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 5.29 KB

resources_QuickOSM.md

File metadata and controls

36 lines (25 loc) · 5.29 KB

QuickOSM

QuickOSM Plugin is a plugin in QGIS that can generate geospatial datasets based on simple key, value queries.

Installation of QuickOSM

  1. Open QGIS.
  2. Go to Plugins > Manage and Install Plugins....
  3. Search for QuickOSM.
  4. Click Install.

Generating Datasets with QuickOSM

Queries Table

GeoPackage File AND/OR key value in overpass query src code
admin_boundaries_perimeter.gpkg, admin_boundaries_points.gpkg - boundary administrative Nagano
Show Query
[out:xml] [timeout:25]; {{geocodeArea:Nagano}} -> .area_0; ( node["boundary"="administrative"](area.area_0); way["boundary"="administrative"](area.area_0); relation["boundary"="administrative"](area.area_0); ); (._;>;); out body;
shrines.gpkg - amenity place_of_worship - -
AND religion shinto Nagano
Show Query
[out:xml] [timeout:25]; {{geocodeArea:Nagano}} -> .area_0; ( node["amenity"="place_of_worship"]"religion"="shinto"; way["amenity"="place_of_worship"]"religion"="shinto"; relation["amenity"="place_of_worship"]"religion"="shinto"; ); (._;>;); out body;
temples.gpkg - amenity place_of_worship -
AND religion shinto Nagano
Show Query
[out:xml] [timeout:25]; {{geocodeArea:Nagano}} -> .area_0; ( node["amenity"="place_of_worship"]"religion"="buddhist"; way["amenity"="place_of_worship"]"religion"="buddhist"; relation["amenity"="place_of_worship"]"religion"="buddhist"; ); (._;>;); out body;

Steps to Generate Data

  1. Open QuickOSM Plugin:

    • Go to Vector > QuickOSM > QuickOSM....
  2. Enter Query Parameters:

    • Fill in the Key and Value fields with the appropriate query parameters from the table above.
  3. Run Query:

    • Click Run Query.
  4. Save the Data:

    • Once the data is loaded into QGIS, right-click on the layer and select Export > Save Features As... to save the data in your desired format (e.g., GeoPackage, Shapefile).