Constructors
Constructor
Source code in python\engine\constructors.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
bboxFromLayer(layer)
Create a bounding box from the extents of a given layer
Parameters:
Name | Type | Description | Default |
---|---|---|---|
layer
|
QgsVectorLayer
|
The layer, that the bbox is calculated uppon. |
required |
Returns:
Name | Type | Description |
---|---|---|
layer |
QgsVectorLayer
|
The output layer, containing the bbox from the input layer |
Source code in python\engine\constructors.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
layerFromWKT(type, wktList, epsg)
Create a layer from a list of wkt's.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
type
|
string
|
One of 'Point', 'Line','Polygon','MultiPoint', 'MultiLine', 'MultiPolygon' |
required |
wktList
|
list of strings
|
List of wkt's to be added to the new layer |
required |
epsg
|
integer
|
The epsg code corrosponding to the wkt features coordinate system. |
required |
Returns:
Name | Type | Description |
---|---|---|
layer |
QgsVectorLayer
|
The output layers containing the wkt's |
Source code in python\engine\constructors.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
|