Skip to content

Commit

Permalink
Add makevalid parameter to GDAL "Export to PostgreSQL" algorithms
Browse files Browse the repository at this point in the history
Fixes #9307
Also completes description of some parameters
  • Loading branch information
DelazJ committed Dec 13, 2024
1 parent 9cf35c4 commit bc192f0
Showing 1 changed file with 38 additions and 8 deletions.
46 changes: 38 additions & 8 deletions docs/user_manual/processing_algs/gdal/vectormiscellaneous.rst
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,13 @@ Parameters
* 7 --- MULTIPOINT
* 8 --- MULTIPOLYGON
* 9 --- MULTILINESTRING
* 10 --- CIRCULARSTRING
* 11 --- COUMPOUNDCURVE
* 12 --- CURVEPOLYGON
* 13 --- MULTICURVE
* 14 --- MULTISURFACE
* 15 --- CONVERT_TO_LINEAR
* 16 --- CONVERT_TO_CURVE

* - **Assign an output CRS**

Expand Down Expand Up @@ -326,11 +333,12 @@ Parameters
- [enumeration]

Default: 0 (2D)
- Defines if the vector file to be imported has 2D or 3D data.
- Defines the coordinate dimensions of the imported vector data.
One of:

* 0 --- 2
* 1 --- 3
* 0 --- 2 (``XY``)
* 1 --- 3 (``XYZ``)
* 2 --- 4 (``XYZM``)

* - **Distance tolerance for simplification**

Expand Down Expand Up @@ -440,7 +448,14 @@ Parameters
- [boolean]

Default: False
-
- Continue after a failure, skipping the failed feature.
* - **Validate geometries based on Simple Features specification**
- ``MAKEVALID``
- [boolean]

Default: False
- Applies cleanup operations on geometries to ensure they are valid regarding the rules
of the `Simple Features specification <https://www.ogc.org/publications/standard/sfs/>`_.
* - **Promote to Multipart**
- ``PROMOTETOMULTI``
- [boolean]
Expand Down Expand Up @@ -528,6 +543,13 @@ Parameters
* 7 --- MULTIPOINT
* 8 --- MULTIPOLYGON
* 9 --- MULTILINESTRING
* 10 --- CIRCULARSTRING
* 11 --- COUMPOUNDCURVE
* 12 --- CURVEPOLYGON
* 13 --- MULTICURVE
* 14 --- MULTISURFACE
* 15 --- CONVERT_TO_LINEAR
* 16 --- CONVERT_TO_CURVE

* - **Assign an output CRS**

Expand Down Expand Up @@ -646,11 +668,12 @@ Parameters
- [enumeration]

Default: 0 (2D)
- Defines if the vector file to be imported has 2D or 3D data.
- Defines the coordinate dimensions of the imported vector data.
One of:

* 0 --- 2D
* 1 --- 3D
* 0 --- 2 (``XY``)
* 1 --- 3 (``XYZ``)
* 2 --- 4 (``XYZM``)

* - **Distance tolerance for simplification**

Expand Down Expand Up @@ -769,7 +792,14 @@ Parameters
- [boolean]

Default: False
-
- Continue after a failure, skipping the failed feature.
* - **Validate geometries based on Simple Features specification**
- ``MAKEVALID``
- [boolean]

Default: False
- Applies cleanup operations on geometries to ensure they are valid regarding the rules
of the `Simple Features specification <https://www.ogc.org/publications/standard/sfs/>`_.
* - **Promote to Multipart**
- ``PROMOTETOMULTI``
- [boolean]
Expand Down

0 comments on commit bc192f0

Please sign in to comment.