66 lines
2.4 KiB
Python
Raw Normal View History

2016-02-28 13:06:36 +01:00
# -*- coding: utf-8 -*-
"""
***************************************************************************
r_mapcalc.py
------------
Date : February 2016
Copyright : (C) 2016 by Médéric Ribreux
Email : medspx at medspx dot fr
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************
"""
__author__ = 'Médéric Ribreux'
__date__ = 'February 2016'
__copyright__ = '(C) 2016, Médéric Ribreux'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'
2017-12-27 20:13:05 +01:00
import os
2016-02-28 13:06:36 +01:00
def checkParameterValuesBeforeExecuting(alg, parameters, context):
2016-02-28 13:06:36 +01:00
""" Verify if we have the right parameters """
if (alg.parameterAsString(parameters, 'expression', context)
and alg.parameterAsString(parameters, 'file', context)):
2016-03-25 22:50:50 +01:00
return alg.tr("You need to set either inline expression or a rules file!")
2016-02-28 13:06:36 +01:00
return None
def processInputs(alg, parameters, context):
2017-12-27 20:13:05 +01:00
# We will use the same raster names than in QGIS to name the rasters in GRASS
rasters = alg.parameterAsLayerList(parameters, 'maps', context)
for idx, raster in enumerate(rasters):
rasterName = os.path.splitext(
os.path.basename(raster.source()))[0]
alg.inputLayers.append(raster)
alg.setSessionProjectionFromLayer(raster)
command = 'r.in.gdal input="{0}" output="{1}" --overwrite -o'.format(
os.path.normpath(raster.source()),
rasterName)
alg.commands.append(command)
2016-02-28 13:06:36 +01:00
2017-12-27 20:13:05 +01:00
alg.removeParameter('maps')
alg.postInputs()
2016-02-28 13:06:36 +01:00
def processCommand(alg, parameters, context):
2017-12-27 20:13:05 +01:00
alg.processCommand(parameters, context, True)
2017-12-27 20:13:05 +01:00
def processOutputs(alg, parameters, context):
# We need to export every raster from the GRASSDB
2017-12-29 17:13:30 +01:00
alg.exportRasterLayersIntoDirectory('output_dir',
parameters, context,
wholeDB=True)