Skip to content

Commit

Permalink
[processing][needs-docs] Drop Fixed Distance Buffer algorithm
Browse files Browse the repository at this point in the history
Since it's functionality is a subset of the native c++ "buffer"
algorithm, it's no longer required.
  • Loading branch information
nyalldawson committed Jan 16, 2018
1 parent 9db2d64 commit 95db682
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 134 deletions.
125 changes: 0 additions & 125 deletions python/plugins/processing/algs/qgis/FixedDistanceBuffer.py

This file was deleted.

2 changes: 0 additions & 2 deletions python/plugins/processing/algs/qgis/QgisAlgorithmProvider.py
Expand Up @@ -69,7 +69,6 @@
from .FieldsCalculator import FieldsCalculator
from .FieldsMapper import FieldsMapper
from .FindProjection import FindProjection
from .FixedDistanceBuffer import FixedDistanceBuffer
from .GeometryConvert import GeometryConvert
from .GeometryByExpression import GeometryByExpression
from .GridLine import GridLine
Expand Down Expand Up @@ -192,7 +191,6 @@ def getAlgs(self):
FieldsMapper(),
FieldsPyculator(),
FindProjection(),
FixedDistanceBuffer(),
GeometryByExpression(),
GeometryConvert(),
GridLine(),
Expand Down
Expand Up @@ -556,7 +556,7 @@ tests:
geometry:
precision: 7

- algorithm: qgis:fixeddistancebuffer
- algorithm: native:buffer
name: Basic polygon buffer
params:
DISSOLVE: 'False'
Expand All @@ -573,7 +573,7 @@ tests:
geometry:
precision: 7

- algorithm: qgis:fixeddistancebuffer
- algorithm: native:buffer
name: Polygon buffer with dissolve
params:
DISSOLVE: 'True'
Expand Down Expand Up @@ -1007,7 +1007,7 @@ tests:
geometry:
precision: 7

- algorithm: qgis:fixeddistancebuffer
- algorithm: native:buffer
name: Buffer polygons using bevel
params:
DISSOLVE: false
Expand All @@ -1024,7 +1024,7 @@ tests:
name: expected/buffer_polys_bevel.gml
type: vector

- algorithm: qgis:fixeddistancebuffer
- algorithm: native:buffer
name: Buffer polygons using miter
params:
DISSOLVE: false
Expand All @@ -1041,7 +1041,7 @@ tests:
name: expected/buffer_polys_miter.gml
type: vector

- algorithm: qgis:fixeddistancebuffer
- algorithm: native:buffer
name: Buffer lines
params:
DISSOLVE: false
Expand All @@ -1061,7 +1061,7 @@ tests:
geometry:
precision: 7

- algorithm: qgis:fixeddistancebuffer
- algorithm: native:buffer
name: Buffer lines (flat)
params:
DISSOLVE: false
Expand All @@ -1081,7 +1081,7 @@ tests:
geometry:
precision: 7

- algorithm: qgis:fixeddistancebuffer
- algorithm: native:buffer
name: Buffer lines (square)
params:
DISSOLVE: false
Expand Down

0 comments on commit 95db682

Please sign in to comment.