Skip to content

Commit

Permalink
Drop python Select/Extract by Location algs
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Sep 8, 2017
1 parent f4b9bbd commit 640a27b
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 314 deletions.
7 changes: 0 additions & 7 deletions python/plugins/processing/algs/help/qgis.yaml
Expand Up @@ -189,9 +189,6 @@ qgis:extractbyexpression: >

For more information about expressions see the <a href ="{qgisdocs}/user_manual/working_with_vector/expression.html">user manual</a>

qgis:extractbylocation: >
This algorithm creates a new vector layer that only contains matching features from an input layer. The criteria for adding features to the resulting layer is defined based on the spatial relationship between each feature and the features in an additional layer.

qgis:extractnodes: >
This algorithm takes a line or polygon layer and generates a point layer with points representing the nodes in the input lines or polygons. The attributes associated to each point are the same ones associated to the line or polygon that the point belongs to.

Expand Down Expand Up @@ -519,10 +516,6 @@ qgis:selectbyexpression: >

For more information about expressions see the <a href ="{qgisdocs}/user_manual/working_with_vector/expression.html">user manual</a>


qgis:selectbylocation: >
This algorithm creates a selection in a vector layer. The criteria for selecting features is based on the spatial relationship between each feature and the features in an additional layer.

qgis:setmvalue: >
This algorithm sets the M value for geometries in a layer.

Expand Down
135 changes: 0 additions & 135 deletions python/plugins/processing/algs/qgis/ExtractByLocation.py

This file was deleted.

4 changes: 0 additions & 4 deletions python/plugins/processing/algs/qgis/QGISAlgorithmProvider.py
Expand Up @@ -134,7 +134,6 @@
from .SaveSelectedFeatures import SaveSelectedFeatures
from .SelectByAttribute import SelectByAttribute
from .SelectByExpression import SelectByExpression
from .SelectByLocation import SelectByLocation
from .ServiceAreaFromLayer import ServiceAreaFromLayer
from .ServiceAreaFromPoint import ServiceAreaFromPoint
from .SetMValue import SetMValue
Expand Down Expand Up @@ -167,7 +166,6 @@
from .VoronoiPolygons import VoronoiPolygons
from .ZonalStatistics import ZonalStatistics

# from .ExtractByLocation import ExtractByLocation
# from .SpatialJoin import SpatialJoin

pluginPath = os.path.normpath(os.path.join(
Expand All @@ -183,7 +181,6 @@ def __init__(self):

def getAlgs(self):
# algs = [
# ExtractByLocation(),
# SpatialJoin(),
# ]
algs = [AddTableField(),
Expand Down Expand Up @@ -280,7 +277,6 @@ def getAlgs(self):
SaveSelectedFeatures(),
SelectByAttribute(),
SelectByExpression(),
SelectByLocation(),
ServiceAreaFromLayer(),
ServiceAreaFromPoint(),
SetMValue(),
Expand Down
166 changes: 0 additions & 166 deletions python/plugins/processing/algs/qgis/SelectByLocation.py

This file was deleted.

2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/SetRasterStyle.py
Expand Up @@ -2,7 +2,7 @@

"""
***************************************************************************
SelectByLocation.py
SetRasterStyle.py
---------------------
Date : August 2012
Copyright : (C) 2012 by Victor Olaya
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/SetVectorStyle.py
Expand Up @@ -2,7 +2,7 @@

"""
***************************************************************************
SelectByLocation.py
SetVectorStyle.py
---------------------
Date : August 2012
Copyright : (C) 2012 by Victor Olaya
Expand Down

0 comments on commit 640a27b

Please sign in to comment.