From 15eb0a81d745f3a5f930e02c04b58a77b0fd672b Mon Sep 17 00:00:00 2001 From: Andrea Giudiceandrea Date: Mon, 23 Sep 2024 00:30:24 +0200 Subject: [PATCH] Fix "Extract/clip by extent" alg --- .../processing_algs/qgis/vectoroverlay.rst | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/user_manual/processing_algs/qgis/vectoroverlay.rst b/docs/user_manual/processing_algs/qgis/vectoroverlay.rst index 550460bd6df..5e48082a425 100644 --- a/docs/user_manual/processing_algs/qgis/vectoroverlay.rst +++ b/docs/user_manual/processing_algs/qgis/vectoroverlay.rst @@ -314,9 +314,8 @@ Python code Extract/clip by extent ---------------------- Creates a new vector layer that only contains features which fall -within a specified extent. - -Any features which intersect the extent will be included. +within a specified extent. Any features which intersect the extent will be +included by default. .. figure:: img/extractbyextent.png :align: center @@ -324,6 +323,14 @@ Any features which intersect the extent will be included. Extract operation between a three-feature input layer 'a' and a dashed extent (left) - resulting features with dashed extent for reference (right) +Optionally, feature geometries can also be clipped to the extent. + +.. figure:: img/extractbyextent_clip.png + :align: center + + Extract operation between a three-feature input layer 'a' and a dashed extent (left) - + resulting features with dashed extent for reference (right) + .. seealso:: :ref:`qgisclip` Parameters @@ -355,17 +362,10 @@ Parameters - [boolean] Default: False - - If checked, output geometries will be automatically converted - to multi geometries to ensure uniform output types. - Moreover the geometries will be clipped to the extent chosen + - If checked, the geometries will be clipped to the extent chosen instead of taking the whole geometry as output. - - .. figure:: img/extractbyextent_clip.png - :align: center - - Extract operation between a three-feature input layer 'a' and a dashed extent (left) - - resulting features with dashed extent for reference (right) - + Moreover, output geometries will be automatically converted + to multi geometries to ensure uniform output types. * - **Extracted** - ``OUTPUT`` - [same as input] @@ -398,7 +398,7 @@ Outputs Python code ........... -**Algorithm ID**: ``qgis:extractbyextent`` +**Algorithm ID**: ``native:extractbyextent`` .. include:: ../algs_include.rst :start-after: **algorithm_code_section**