mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-16 00:03:12 -04:00
[processing] fix icons for TauDEM algs
This commit is contained in:
parent
c72e881595
commit
0c7ce60d1d
@ -69,7 +69,7 @@ class DinfDistDown(GeoAlgorithm):
|
|||||||
}
|
}
|
||||||
|
|
||||||
def getIcon(self):
|
def getIcon(self):
|
||||||
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
|
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
|
||||||
|
|
||||||
def defineCharacteristics(self):
|
def defineCharacteristics(self):
|
||||||
self.name = 'D-Infinity Distance Down'
|
self.name = 'D-Infinity Distance Down'
|
||||||
|
@ -70,7 +70,7 @@ class DinfDistUp(GeoAlgorithm):
|
|||||||
}
|
}
|
||||||
|
|
||||||
def getIcon(self):
|
def getIcon(self):
|
||||||
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
|
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
|
||||||
|
|
||||||
def defineCharacteristics(self):
|
def defineCharacteristics(self):
|
||||||
self.name = 'D-Infinity Distance Up'
|
self.name = 'D-Infinity Distance Up'
|
||||||
|
@ -59,7 +59,7 @@ class DinfTransLimAccum(GeoAlgorithm):
|
|||||||
OUT_CONCENTR_GRID = 'OUT_CONCENTR_GRID'
|
OUT_CONCENTR_GRID = 'OUT_CONCENTR_GRID'
|
||||||
|
|
||||||
def getIcon(self):
|
def getIcon(self):
|
||||||
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
|
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
|
||||||
|
|
||||||
def defineCharacteristics(self):
|
def defineCharacteristics(self):
|
||||||
self.name = 'D-Infinity Transport Limited Accumulation'
|
self.name = 'D-Infinity Transport Limited Accumulation'
|
||||||
|
@ -59,7 +59,7 @@ class DinfTransLimAccum2(GeoAlgorithm):
|
|||||||
OUT_CONCENTR_GRID = 'OUT_CONCENTR_GRID'
|
OUT_CONCENTR_GRID = 'OUT_CONCENTR_GRID'
|
||||||
|
|
||||||
def getIcon(self):
|
def getIcon(self):
|
||||||
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
|
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
|
||||||
|
|
||||||
def defineCharacteristics(self):
|
def defineCharacteristics(self):
|
||||||
self.name = 'D-Infinity Transport Limited Accumulation - 2'
|
self.name = 'D-Infinity Transport Limited Accumulation - 2'
|
||||||
|
@ -63,7 +63,7 @@ class DropAnalysis(GeoAlgorithm):
|
|||||||
STEPS = ['Logarithmic', 'Linear']
|
STEPS = ['Logarithmic', 'Linear']
|
||||||
|
|
||||||
def getIcon(self):
|
def getIcon(self):
|
||||||
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
|
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
|
||||||
|
|
||||||
def defineCharacteristics(self):
|
def defineCharacteristics(self):
|
||||||
self.name = 'Stream Drop Analysis'
|
self.name = 'Stream Drop Analysis'
|
||||||
|
@ -57,7 +57,7 @@ class GridNet(GeoAlgorithm):
|
|||||||
STRAHLER_GRID = 'STRAHLER_GRID'
|
STRAHLER_GRID = 'STRAHLER_GRID'
|
||||||
|
|
||||||
def getIcon(self):
|
def getIcon(self):
|
||||||
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
|
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
|
||||||
|
|
||||||
def defineCharacteristics(self):
|
def defineCharacteristics(self):
|
||||||
self.name = 'Grid Network'
|
self.name = 'Grid Network'
|
||||||
|
@ -54,7 +54,7 @@ class LengthArea(GeoAlgorithm):
|
|||||||
STREAM_SOURCE_GRID = 'STREAM_SOURCE_GRID'
|
STREAM_SOURCE_GRID = 'STREAM_SOURCE_GRID'
|
||||||
|
|
||||||
def getIcon(self):
|
def getIcon(self):
|
||||||
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
|
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
|
||||||
|
|
||||||
def defineCharacteristics(self):
|
def defineCharacteristics(self):
|
||||||
self.name = 'Length Area Stream Source'
|
self.name = 'Length Area Stream Source'
|
||||||
|
@ -49,7 +49,7 @@ class PeukerDouglas(GeoAlgorithm):
|
|||||||
STREAM_SOURCE_GRID = 'STREAM_SOURCE_GRID'
|
STREAM_SOURCE_GRID = 'STREAM_SOURCE_GRID'
|
||||||
|
|
||||||
def getIcon(self):
|
def getIcon(self):
|
||||||
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
|
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
|
||||||
|
|
||||||
def defineCharacteristics(self):
|
def defineCharacteristics(self):
|
||||||
self.name = 'Peuker Douglas'
|
self.name = 'Peuker Douglas'
|
||||||
|
@ -54,7 +54,7 @@ class SlopeArea(GeoAlgorithm):
|
|||||||
SLOPE_AREA_GRID = 'SLOPE_AREA_GRID'
|
SLOPE_AREA_GRID = 'SLOPE_AREA_GRID'
|
||||||
|
|
||||||
def getIcon(self):
|
def getIcon(self):
|
||||||
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
|
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')
|
||||||
|
|
||||||
def defineCharacteristics(self):
|
def defineCharacteristics(self):
|
||||||
self.name = 'Slope Area Combination'
|
self.name = 'Slope Area Combination'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user