Using SVG for layer symbols

Scalable Vector Graphics (SVG) are an XML standard that defines vector graphics which can be scaled at any resolution. QGIS can use SVG files as markers for points. In this recipe, we'll use Python to apply one of the SVG symbols included with QGIS to a point layer.

Getting ready

For this recipe, download the following zipped point shapefile layer from https://github.com/GeospatialPython/Learn/raw/master/NYC_MUSEUMS_GEO.zip.

Extract it to your qgis_data directory.

How to do it...

In the following steps, we'll load the vector layer, build a symbol layer and renderer, and add it to the layer, as follows:

  1. First, we'll define the path to the shapefile:
            src = "/qgis_data/NYC_MUSEUMS_GEO/NYC_MUSEUMS_GEO.shp" 
    
  2. Next, we'll load the ...

Get QGIS Python Programming Cookbook - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.