-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
QGIS Python Programming Cookbook
By :
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.
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.
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...
Change the font size
Change margin width
Change background colour