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

    # Delete output parameter
    alg.parameters.remove(param)
예제 #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')
예제 #4
0
파일: i_rectify.py 프로젝트: AM7000000/QGIS
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')