- QGIS Python Programming Cookbook
- Joel Lawhead
- 383字
- 2021-07-23 19:48:53
Filtering a layer by geometry
In this recipe, we'll perform a spatial operation to select a subset of a point layer based on the points contained in an overlapping polygon layer. We'll use shapefiles in both cases, with one being a point layer and the other a polygon. This kind of subset is one of the most common GIS operations.
Getting ready
We will need two new shapefiles that have not been used in previous recipes. You can download the point layer from https://geospatialpython.googlecode.com/files/MSCities_Geo_Pts.zip.
Similarly, you can download the geometry layer from https://geospatialpython.googlecode.com/files/GIS_CensusTract.zip.
Unzip these shapefiles and place them in a directory named ms
within your qgis_data
directory, within your root or home directory.
How to do it...
In this recipe, we will perform several steps to select features in the point layer that fall within the polygon layer, as follows:
- First, load the point layer:
lyrPts = QgsVectorLayer("/qgis_data/ms/MSCities_Geo_Pts.shp", "MSCities_Geo_Pts", "ogr")
- Next, load the polygon layer:
lyrPoly = QgsVectorLayer("/qgis_data/ms/GIS_CensusTract_poly.shp", "GIS_CensusTract_poly", "ogr")
- Add the layers to the map using a list:
QgsMapLayerRegistry.instance().addMapLayers([lyrPts,lyrPoly])
- Access the polygon layer's features:
ftsPoly = lyrPoly.getFeatures()
- Now, iterate through the polygon's features:
for feat in ftsPoly:
- Grab each feature's geometry:
geomPoly = feat.geometry()
- Access the point features and filter the point features by the polygon's bounding box:
featsPnt = lyrPts.getFeatures(QgsFeatureRequest().setFilterRect(geomPoly.boundingBox()))
- Iterate through each point and check whether it's within the polygon itself:
for featPnt in featsPnt: if featPnt.geometry().within(geomPoly):
- If the polygon contains the point, print the point's ID and select the point:
print featPnt.id() lyrPts.select(featPnt.id())
- Now, set the polygon layer as the active map layer:
iface.setActiveLayer(lyrPoly)
- Zoom to the polygon layer's maximum extent:
iface.zoomToActiveLayer()
Verify that your map looks similar to the following image:

How it works...
While QGIS has a number of tools for spatial selection, PyQGIS doesn't have a dedicated API for these types of functions. However, there are just enough methods in the API, thanks to the underlying ogr/GEOS
library, that you can easily create your own spatial filters for two layers. Step 7 isn't entirely necessary, but we gain some efficiency using the bounding box of the polygon to limit the number of point features we're examining. Calculations involving rectangles are far quicker than detailed point-in-polygon queries. So, we quickly reduce the number of points we need to iterate through for the more expensive spatial operations.
- 零基礎(chǔ)搭建量化投資系統(tǒng):以Python為工具
- 零基礎(chǔ)玩轉(zhuǎn)區(qū)塊鏈
- Xcode 7 Essentials(Second Edition)
- OpenCV 3和Qt5計算機(jī)視覺應(yīng)用開發(fā)
- Clojure for Domain:specific Languages
- Python爬蟲開發(fā)與項目實戰(zhàn)
- SEO實戰(zhàn)密碼
- Learning JavaScript Data Structures and Algorithms
- Mastering Android Game Development
- Swift 4 Protocol-Oriented Programming(Third Edition)
- Swift 4從零到精通iOS開發(fā)
- .NET 4.5 Parallel Extensions Cookbook
- 機(jī)器學(xué)習(xí)微積分一本通(Python版)
- Java程序設(shè)計基礎(chǔ)(第6版)
- Software Architecture with Python