Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates a few algorithms #9335

Merged
merged 3 commits into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/user_manual/processing/parameters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ Input types
- :class:`QgsProcessingParameterAnnotationLayer <qgis.core.QgsProcessingParameterAnnotationLayer>`
- ``alg.ANNOTATION_LAYER``
- An annotation layer
* - Area
- :class:`QgsProcessingParameterArea <qgis.core.QgsProcessingParameterArea>`
-
- A numeric parameter representing an area measure
* - Authentication Configuration
- :class:`QgsProcessingParameterAuthConfig <qgis.core.QgsProcessingParameterAuthConfig>`
- ``alg.AUTH_CFG``
Expand Down Expand Up @@ -238,6 +242,10 @@ Input types
-
- A vector tile layer destination parameter, for specifying the destination path
for a vector tile layer created by the algorithm
* - Volume
- :class:`QgsProcessingParameterVolume <qgis.core.QgsProcessingParameterVolume>`
-
- A numeric parameter representing a volume measure


Output types
Expand Down
31 changes: 31 additions & 0 deletions docs/user_manual/processing_algs/qgis/interpolation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,9 @@ A weighting factor can be applied to the line segments.
Parameters
..........

Basic parameters
^^^^^^^^^^^^^^^^

.. list-table::
:header-rows: 1
:widths: 20 20 20 40
Expand Down Expand Up @@ -445,6 +448,34 @@ Parameters
:start-after: **file_output_types**
:end-before: **end_file_output_types**

Advanced parameters
^^^^^^^^^^^^^^^^^^^

.. list-table::
:header-rows: 1
:widths: 20 20 20 40
:class: longtable

* - Label
- Name
- Type
- Description
* - **Creation options**

Optional
- ``CREATE_OPTIONS``
- [string]

Default: ''
- For adding one or more creation options that control the
raster to be created (colors, block size, file
compression...).
For convenience, you can rely on predefined profiles (see
:ref:`GDAL driver options section <gdal_createoptions>`).

Batch Process and Model Designer: separate multiple options with a pipe
character (``|``).

Outputs
.......

Expand Down
31 changes: 31 additions & 0 deletions docs/user_manual/processing_algs/qgis/mesh.rst
Original file line number Diff line number Diff line change
Expand Up @@ -730,6 +730,9 @@ properties <mesh_stacked_averaging>` (default is Multi level averaging method).
Parameters
..........

Basic parameters
^^^^^^^^^^^^^^^^

.. list-table::
:header-rows: 1
:widths: 20 20 20 40
Expand Down Expand Up @@ -789,6 +792,34 @@ Parameters
:start-after: **file_output_types**
:end-before: **end_file_output_types**

Advanced parameters
^^^^^^^^^^^^^^^^^^^

.. list-table::
:header-rows: 1
:widths: 20 20 20 40
:class: longtable

* - Label
- Name
- Type
- Description
* - **Creation options**

Optional
- ``CREATE_OPTIONS``
- [string]

Default: ''
- For adding one or more creation options that control the
raster to be created (colors, block size, file
compression...).
For convenience, you can rely on predefined profiles (see
:ref:`GDAL driver options section <gdal_createoptions>`).

Batch Process and Model Designer: separate multiple options with a pipe
character (``|``).

Outputs
.......

Expand Down
Loading
Loading