Skip to content
Permalink
Browse files
[processing] fix icons for TauDEM algs
  • Loading branch information
alexbruy committed Jul 16, 2014
1 parent c72e881 commit 0c7ce60
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
@@ -69,7 +69,7 @@ class DinfDistDown(GeoAlgorithm):
}

def getIcon(self):
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')

def defineCharacteristics(self):
self.name = 'D-Infinity Distance Down'
@@ -70,7 +70,7 @@ class DinfDistUp(GeoAlgorithm):
}

def getIcon(self):
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')

def defineCharacteristics(self):
self.name = 'D-Infinity Distance Up'
@@ -59,7 +59,7 @@ class DinfTransLimAccum(GeoAlgorithm):
OUT_CONCENTR_GRID = 'OUT_CONCENTR_GRID'

def getIcon(self):
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')

def defineCharacteristics(self):
self.name = 'D-Infinity Transport Limited Accumulation'
@@ -59,7 +59,7 @@ class DinfTransLimAccum2(GeoAlgorithm):
OUT_CONCENTR_GRID = 'OUT_CONCENTR_GRID'

def getIcon(self):
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')

def defineCharacteristics(self):
self.name = 'D-Infinity Transport Limited Accumulation - 2'
@@ -63,7 +63,7 @@ class DropAnalysis(GeoAlgorithm):
STEPS = ['Logarithmic', 'Linear']

def getIcon(self):
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')

def defineCharacteristics(self):
self.name = 'Stream Drop Analysis'
@@ -57,7 +57,7 @@ class GridNet(GeoAlgorithm):
STRAHLER_GRID = 'STRAHLER_GRID'

def getIcon(self):
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')

def defineCharacteristics(self):
self.name = 'Grid Network'
@@ -54,7 +54,7 @@ class LengthArea(GeoAlgorithm):
STREAM_SOURCE_GRID = 'STREAM_SOURCE_GRID'

def getIcon(self):
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')

def defineCharacteristics(self):
self.name = 'Length Area Stream Source'
@@ -49,7 +49,7 @@ class PeukerDouglas(GeoAlgorithm):
STREAM_SOURCE_GRID = 'STREAM_SOURCE_GRID'

def getIcon(self):
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')

def defineCharacteristics(self):
self.name = 'Peuker Douglas'
@@ -54,7 +54,7 @@ class SlopeArea(GeoAlgorithm):
SLOPE_AREA_GRID = 'SLOPE_AREA_GRID'

def getIcon(self):
return QIcon(os.path.dirname(__file__) + '/../images/taudem.png')
return QIcon(os.path.dirname(__file__) + '/../../images/taudem.png')

def defineCharacteristics(self):
self.name = 'Slope Area Combination'

0 comments on commit 0c7ce60

Please sign in to comment.