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

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")
    
主站蜘蛛池模板: 台江县| 石门县| 班戈县| 盐边县| 潼南县| 阜康市| 桃江县| 高平市| 仲巴县| 梨树县| 永平县| 岚皋县| 临邑县| 万盛区| 乐安县| 平谷区| 长海县| 兖州市| 剑河县| 积石山| 临汾市| 昌图县| 裕民县| 伊宁市| 博客| 阳新县| 海原县| 邢台县| 定陶县| 托克逊县| 牡丹江市| 新龙县| 天门市| 临颍县| 新宁县| 德阳市| 曲松县| 兰州市| 汕尾市| 上蔡县| 高台县|