Skip to content

Commit aaf9793

Browse files
authored
[needs-docs][processing] merge grid algorithms and add point grid type
1 parent c91fd5a commit aaf9793

10 files changed

+178
-480
lines changed

python/plugins/processing/algs/qgis/GridPolygon.py renamed to python/plugins/processing/algs/qgis/Grid.py

Lines changed: 158 additions & 55 deletions
Large diffs are not rendered by default.

python/plugins/processing/algs/qgis/GridLine.py

Lines changed: 0 additions & 216 deletions
This file was deleted.

python/plugins/processing/algs/qgis/QgisAlgorithmProvider.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@
7070
from .FindProjection import FindProjection
7171
from .GeometryConvert import GeometryConvert
7272
from .GeometryByExpression import GeometryByExpression
73-
from .GridLine import GridLine
74-
from .GridPolygon import GridPolygon
73+
from .Grid import Grid
7574
from .Heatmap import Heatmap
7675
from .Hillshade import Hillshade
7776
from .HubDistanceLines import HubDistanceLines
@@ -191,8 +190,7 @@ def getAlgs(self):
191190
FindProjection(),
192191
GeometryByExpression(),
193192
GeometryConvert(),
194-
GridLine(),
195-
GridPolygon(),
193+
Grid(),
196194
Heatmap(),
197195
Hillshade(),
198196
HubDistanceLines(),

python/plugins/processing/tests/testdata/expected/create_grid_lines.gfs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,5 @@
3737
<ElementPath>id</ElementPath>
3838
<Type>Integer</Type>
3939
</PropertyDefn>
40-
<PropertyDefn>
41-
<Name>coord</Name>
42-
<ElementPath>coord</ElementPath>
43-
<Type>Real</Type>
44-
</PropertyDefn>
4540
</GMLFeatureClass>
4641
</GMLFeatureClassList>

0 commit comments

Comments
 (0)