Skip to content

Commit ce9d93a

Browse files
authored
Merge pull request #60096 from qgis/backport-60095-to-release-3_34
[Backport release-3_34] qgsvectorlayer.h: move a documentation section to the appropriate place
2 parents bca938e + b3f4f73 commit ce9d93a

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

python/PyQt6/core/auto_generated/vector/qgsvectorlayer.sip.in

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,13 @@ attribute operators, “BBOX, Disjoint, Intersects, Touches, Crosses, Contains,
144144
spatial binary operators and the QGIS local “geomFromWKT, geomFromGML”
145145
geometry constructor functions.
146146

147+
Also note:
148+
149+
- You can use various functions available in the QGIS Expression list,
150+
however the function must exist server side and have the same name and arguments to work.
151+
- Use the special $geometry parameter to provide the layer geometry column as input
152+
into the spatial binary operators e.g intersects($geometry, geomFromWKT('POINT (5 6)'))
153+
147154
OGC API Features data provider (oapif)
148155
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
149156

@@ -163,13 +170,6 @@ The URI should be constructed using the :py:class:`QgsDataSourceUri` class with
163170
- maxNumFeatures=number: maximum number of features to retrieve (possibly across several multiple paging requests)
164171
- hideDownloadProgressDialog=1: to hide the download progress dialog.
165172

166-
Also note:
167-
168-
- You can use various functions available in the QGIS Expression list,
169-
however the function must exist server side and have the same name and arguments to work.
170-
- Use the special $geometry parameter to provide the layer geometry column as input
171-
into the spatial binary operators e.g intersects($geometry, geomFromWKT('POINT (5 6)'))
172-
173173
Delimited text file data provider (delimitedtext)
174174
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
175175

python/core/auto_generated/vector/qgsvectorlayer.sip.in

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,13 @@ attribute operators, “BBOX, Disjoint, Intersects, Touches, Crosses, Contains,
144144
spatial binary operators and the QGIS local “geomFromWKT, geomFromGML”
145145
geometry constructor functions.
146146

147+
Also note:
148+
149+
- You can use various functions available in the QGIS Expression list,
150+
however the function must exist server side and have the same name and arguments to work.
151+
- Use the special $geometry parameter to provide the layer geometry column as input
152+
into the spatial binary operators e.g intersects($geometry, geomFromWKT('POINT (5 6)'))
153+
147154
OGC API Features data provider (oapif)
148155
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
149156

@@ -163,13 +170,6 @@ The URI should be constructed using the :py:class:`QgsDataSourceUri` class with
163170
- maxNumFeatures=number: maximum number of features to retrieve (possibly across several multiple paging requests)
164171
- hideDownloadProgressDialog=1: to hide the download progress dialog.
165172

166-
Also note:
167-
168-
- You can use various functions available in the QGIS Expression list,
169-
however the function must exist server side and have the same name and arguments to work.
170-
- Use the special $geometry parameter to provide the layer geometry column as input
171-
into the spatial binary operators e.g intersects($geometry, geomFromWKT('POINT (5 6)'))
172-
173173
Delimited text file data provider (delimitedtext)
174174
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
175175

src/core/vector/qgsvectorlayer.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,13 @@ typedef QSet<int> QgsAttributeIds;
210210
* attribute operators, “BBOX, Disjoint, Intersects, Touches, Crosses, Contains, Overlaps, Within”
211211
* spatial binary operators and the QGIS local “geomFromWKT, geomFromGML”
212212
* geometry constructor functions.
213+
214+
* Also note:
215+
*
216+
* - You can use various functions available in the QGIS Expression list,
217+
* however the function must exist server side and have the same name and arguments to work.
218+
* - Use the special $geometry parameter to provide the layer geometry column as input
219+
* into the spatial binary operators e.g intersects($geometry, geomFromWKT('POINT (5 6)'))
213220
*
214221
* \subsection oapif OGC API Features data provider (oapif)
215222
*
@@ -229,13 +236,6 @@ typedef QSet<int> QgsAttributeIds;
229236
* - maxNumFeatures=number: maximum number of features to retrieve (possibly across several multiple paging requests)
230237
* - hideDownloadProgressDialog=1: to hide the download progress dialog.
231238
*
232-
* Also note:
233-
*
234-
* - You can use various functions available in the QGIS Expression list,
235-
* however the function must exist server side and have the same name and arguments to work.
236-
* - Use the special $geometry parameter to provide the layer geometry column as input
237-
* into the spatial binary operators e.g intersects($geometry, geomFromWKT('POINT (5 6)'))
238-
*
239239
* \subsection delimitedtext Delimited text file data provider (delimitedtext)
240240
*
241241
* Accesses data in a delimited text file, for example CSV files generated by

0 commit comments

Comments
 (0)