forked from gioman/gioman_processing_circuitscape
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoneToAll.py
More file actions
185 lines (151 loc) · 8.4 KB
/
oneToAll.py
File metadata and controls
185 lines (151 loc) · 8.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# -*- coding: utf-8 -*-
"""
***************************************************************************
OneToAll.py
---------------------
Date : May 2014
Copyright : (C) 2014-2018 by Alexander Bruy
Email : alexander dot bruy at gmail dot com
***************************************************************************
* *
* 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__ = 'Alexander Bruy'
__date__ = 'May 2014'
__copyright__ = '(C) 2014-2018, Alexander Bruy'
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'
import os
import configparser
from qgis.core import (QgsProcessing,
QgsProcessingParameterRasterLayer,
QgsProcessingParameterBoolean,
QgsProcessingParameterString,
QgsProcessingParameterEnum,
QgsProcessingParameterFolderDestination
)
from processing.core.ProcessingConfig import ProcessingConfig
from processing.tools import system
from processing_circuitscape.circuitscapeAlgorithm import CircuitscapeAlgorithm
from processing_circuitscape import circuitscapeUtils
class OneToAll(CircuitscapeAlgorithm):
MODE = "MODE"
RESISTANCE_MAP = "RESISTANCE_MAP"
IS_CONDUCTANCES = "IS_CONDUCTANCES"
FOCAL_NODE = "FOCAL_NODE"
WRITE_CURRENT_MAP = "WRITE_CURRENT_MAP"
WRITE_VOLTAGE_MAP = "WRITE_VOLTAGE_MAP"
MASK = "MASK"
SHORT_CIRCUIT = "SHORT_CIRCUIT"
SOURCE_STRENGTH = "SOURCE_STRENGTH"
BASENAME = "BASENAME"
DIRECTORY = "DIRECTORY"
def name(self):
return "onetoall"
def displayName(self):
return self.tr("One-to-all / All-to-one")
def group(self):
return self.tr("Circuitscape")
def groupId(self):
return "circuitscape"
def __init__(self):
super().__init__()
def initAlgorithm(self, config=None):
self.modes = ((self.tr("One to all"), "one-to-all"),
(self.tr("All to one"), "all-to-one"))
self.addParameter(QgsProcessingParameterEnum(self.MODE,
self.tr("Modelling mode"),
options=[i[0] for i in self.modes],
allowMultiple=False,
defaultValue=0))
self.addParameter(QgsProcessingParameterRasterLayer(self.RESISTANCE_MAP,
self.tr("Resistance map")))
self.addParameter(QgsProcessingParameterBoolean(self.IS_CONDUCTANCES,
self.tr("Data represent conductances instead of resistances"),
False))
self.addParameter(QgsProcessingParameterRasterLayer(self.FOCAL_NODE,
self.tr("Focal node location")))
self.addParameter(QgsProcessingParameterBoolean(self.WRITE_CURRENT_MAP,
self.tr("Create current map"),
True))
self.addParameter(QgsProcessingParameterBoolean(self.WRITE_VOLTAGE_MAP,
self.tr("Create voltage map"),
True))
self.addParameter(QgsProcessingParameterRasterLayer(self.MASK,
self.tr("Mask raster"),
optional=True))
self.addParameter(QgsProcessingParameterRasterLayer(self.SHORT_CIRCUIT,
self.tr("Short-circuit region"),
optional=True))
self.addParameter(QgsProcessingParameterRasterLayer(self.SOURCE_STRENGTH,
self.tr("Source strength"),
optional=True))
self.addParameter(QgsProcessingParameterString(self.BASENAME,
self.tr("Output basename"),
"csoutput"))
self.addParameter(QgsProcessingParameterFolderDestination(self.DIRECTORY,
self.tr("Output directory")))
def processAlgorithm(self, parameters, context, feedback):
mode = self.modes[self.parameterAsEnum(parameters, self.MODE, context)][1]
resistance = self.parameterAsRasterLayer(parameters, self.RESISTANCE_MAP, context).source()
useConductance = str(not self.parameterAsBool(parameters, self.IS_CONDUCTANCES, context))
focal = self.parameterAsRasterLayer(parameters, self.FOCAL_NODE, context).source()
writeCurrent = str(self.parameterAsBool(parameters, self.WRITE_CURRENT_MAP, context))
writeVoltage = str(self.parameterAsBool(parameters, self.WRITE_VOLTAGE_MAP, context))
# advanced parameters
mask = self.parameterAsRasterLayer(parameters, self.MASK, context)
shortCircuit = self.parameterAsRasterLayer(parameters, self.SHORT_CIRCUIT, context)
sourceStrength = self.parameterAsRasterLayer(parameters, self.SOURCE_STRENGTH, context)
baseName = self.parameterAsString(parameters, self.BASENAME, context)
directory = self.parameterAsString(parameters, self.DIRECTORY, context)
basePath = os.path.join(directory, baseName)
commands = self.prepareInputs(parameters, context)
iniPath = circuitscapeUtils.writeConfiguration()
cfg = configparser.ConfigParser()
cfg.read(iniPath)
# set parameters
cfg["Circuitscape mode"]["scenario"] = mode
section = cfg["Habitat raster or graph"]
section["habitat_map_is_resistances"] = useConductance
if resistance in self.exportedLayers.keys():
section["habitat_file"] = self.exportedLayers[resistance]
if focal in self.exportedLayers.keys():
section = cfg["Options for pairwise and one-to-all and all-to-one modes"]
section["point_file"] = self.exportedLayers[focal]
if sourceStrength is not None:
if sourceStrength in self.exportedLayers.keys():
section = cfg["Options for one-to-all and all-to-one modes"]
section["variable_source_file"] = self.exportedLayers[sourceStrength]
section["use_variable_source_strengths"] = "True"
if mask is not None:
if mask in self.exportedLayers.keys():
section = cfg["Mask file"]
section["mask_file"] = self.exportedLayers[mask]
section["use_mask"] = "True"
if shortCircuit is not None:
if shortCircuit in self.exportedLayers.keys():
section = cfg["Short circuit regions (aka polygons)"]
section["polygon_file"] = self.exportedLayers[shortCircuit]
section["use_polygons"] = "True"
cfg["Output options"]["write_cur_maps"] = writeCurrent
cfg["Output options"]["write_volt_maps"] = writeVoltage
cfg["Output options"]["output_file"] = basePath
# write configuration back to the file
with open(iniPath, "w") as f:
cfg.write(f)
if system.isWindows():
csPath = circuitscapeUtils.circuitscapeDirectory()
if csPath == "":
csPath = "cs_run.exe"
else:
csPath = os.path.join(csPath, "cs_run.exe")
commands.append('"{}" {}'.format(csPath, iniPath))
else:
commands.append("csrun.py {}".format(iniPath))
circuitscapeUtils.jobFileFromCommands(commands)
circuitscapeUtils.execute(feedback)