官术网_书友最值得收藏!

Creating a vector layer in memory

Sometimes, you need to create a temporary data set for quick output or as an intermediate step in a more complex operation without the overhead of actually writing a file to disk. PyQGIS employs memory layers that allow you to create a complete vector data set, including the geometry, fields, and attributes, virtually. Once the memory layer is created, you can work with it in the same way you would work with a vector layer loaded from disk.

Getting ready

This recipe entirely runs inside the PyQGIS console, so no preparation or external resources are required.

How to do it...

We will create a Point vector layer, named Layer 1 with a few fields and then validate it:

  1. Start QGIS.
  2. From the Plugins menu, select Python Console.
  3. In the Python console, create a QgsVectorLayer, including fields, and specify it as a memory data provider:
    vectorLyr = QgsVectorLayer('Point?crs=epsg:4326&field=city:string(25)&field=population:nt', 'Layer 1' , "memory")
    
  4. Now, validate the layer and ensure that the console returns True:
    vectorLyr.isValid()
    

How it works...

The QgsVectorLayer requires three arguments. The last argument specifies the type, which in this case is memory. The second argument specifies the layer name. Normally, the first argument is the path to the file on disk, which is used to create the layer. In the case of the memory layer, the first argument becomes the construction string for the layer. The format uses query parameters that follow the convention key = value. We first specify the coordinate reference system and then specify the fields we want. In this case, we specify the first field, a string for city names, and then an integer field for population.

There's more…

You can easily see how describing a layer's attribute table structure in a string can become unwieldy. You can also use a Python-ordered dictionary to build the string dynamically, as shown in the following steps.

  1. First, you need to import the OrderedDict container, which remembers the order in which keys are inserted:
    from collections import OrderedDict
    
  2. Then, build an ordered dictionary that contains attribute names and types:
    fields = OrderedDict([('city','str(25)'),('population','int')])
    
  3. Next, build a string by joining the output of a Python list comprehension that loops through the ordered dictionary:
    path = '&'.join(['field={}:{}'.format(k,v) for k,v in fields.items()])
    
  4. Finally, use this string to define the layer:
    vectorLyr = QgsVectorLayer('Point?crs=epsg:4326&' + path, 'Layer 1' , "memory")
    
主站蜘蛛池模板: 阳谷县| 宁南县| 新郑市| 莫力| 莱州市| 会昌县| 永嘉县| 彰武县| 林西县| 章丘市| 遂昌县| 阳城县| 黄大仙区| 佛学| 民丰县| 天全县| 兖州市| 百色市| 额尔古纳市| 疏附县| 台安县| 湖南省| 嘉峪关市| 诸城市| 崇义县| 晴隆县| 庆城县| 台中县| 城固县| 霍林郭勒市| 清丰县| 金堂县| 忻州市| 顺昌县| 民县| 南京市| 塔河县| 金寨县| 都昌县| 定远县| 竹山县|