QGIS Python Programming Cookbook(Second Edition)
上QQ阅读APP看书,第一时间看更新

Filtering a layer by geometry

In this recipe, we'll perform a spatial operation to select the subset of a point layer based on the points contained in an overlapping polygon layer. We'll use shapefiles in both the 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 the previous recipes. You can download the point layer from https://github.com/GeospatialPython/Learn/raw/master/MSCities_Geo_Pts.zip.

Similarly, you can download the geometry layer from https://github.com/GeospatialPython/Learn/raw/master/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:

  1. First, load the point layer:
            lyrPts = QgsVectorLayer("/qgis_data/ms/MSCities_Geo_Pts.shp",
                                    "MSCities_Geo_Pts", "ogr") 
    
  2. Next, load the polygon layer:
            lyrPoly = QgsVectorLayer("/qgis_data/ms/GIS_CensusTract_poly.shp",
                                     "GIS_CensusTract_poly", "ogr") 
    
  3. Add the layers to the map using a list:
            QgsMapLayerRegistry.instance().addMapLayers([lyrPts,lyrPoly]) 
    
  4. Access the polygon layer's features:
            ftsPoly = lyrPoly.getFeatures() 
    
  5. Now, iterate through the polygon's features:
            for feat in ftsPoly: 
    
  6. Grab each feature's geometry:
            geomPoly = feat.geometry()  
    
  7. Access the point features and filter the point features by the polygon's bounding box:
            bbox = geomPoly.boundingBox() 
            req = gsFeatureRequest() 
            filterRect = req.setFilterRect(bbox) 
            featsPnt = lyrPts.getFeatures(filterRect) 
    
  8. Iterate through each point and check whether it's within the polygon itself:
            for featPnt in featsPnt: 
                if featPnt.geometry().within(geomPoly): 
    
  9. If the polygon contains the point, print the point's ID and select the point:
            print featPnt.id() 
            lyrPts.select(featPnt.id()) 
    
  10. Now, set the polygon layer as the active map layer:
            iface.setActiveLayer(lyrPoly) 
    
  11. Zoom to the polygon layer's extents:
            iface.zoomToActiveLayer() 
    
  12. Verify that your map looks similar to the following image:

    How to do it...

How it works...

While QGIS has several tools for spatial selection, PyQGIS doesn't have a dedicated API for this type of functions. However, there are just enough methods in the API, thanks to the underlying ogr/GEOS library, so that you can easily create your own spatial filters for two layers. Step 7 isn't entirely necessary, but we gain some efficiency by using the bounding box of the polygon to limit the number of point features we're examining. Calculations involving rectangles are far quicker than the detailed point-in-polygon queries. So, we quickly reduce the number of points we need to iterate through for more expensive spatial operations.