Example #1
0
def processOutputs(alg):
    param = alg.getParameterFromName('output')
    multipleOutputDir(alg, 'output', param.value)

    # Delete output parameter
    alg.parameters.remove(param)
Example #2
0
def processOutputs(alg):
    param = alg.getParameterFromName('output')
    multipleOutputDir(alg, 'output', param.value)

    # Delete output parameter
    alg.parameters.remove(param)
def processOutputs(alg):
    # We need to export from the TARGET location
    command = "g.mapset location=TARGET mapset=PERMANENT"
    alg.commands.append(command)
    multipleOutputDir(alg, 'output')
Example #4
0
def processOutputs(alg):
    # We need to export from the TARGET location
    command = "g.mapset location=TARGET mapset=PERMANENT"
    alg.commands.append(command)
    multipleOutputDir(alg, 'output')