2015-12-16 17:39:16 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
v_net_connectivity.py
|
|
|
|
---------------------
|
|
|
|
Date : December 2015
|
|
|
|
Copyright : (C) 2015 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__ = 'December 2015'
|
|
|
|
__copyright__ = '(C) 2015, Médéric Ribreux'
|
|
|
|
|
2016-03-21 04:58:12 +01:00
|
|
|
from .v_net import incorporatePoints, variableOutput
|
2015-12-16 17:39:16 +01:00
|
|
|
|
2016-01-02 16:14:41 +01:00
|
|
|
|
2017-10-22 10:25:09 +02:00
|
|
|
def checkParameterValuesBeforeExecuting(alg, parameters, context):
|
2015-12-16 17:39:16 +01:00
|
|
|
""" Verify if we have the right parameters """
|
2019-01-31 12:50:09 +02:00
|
|
|
params = ['where', 'cats']
|
2015-12-16 17:39:16 +01:00
|
|
|
values = []
|
|
|
|
for param in params:
|
2016-01-02 16:14:41 +01:00
|
|
|
for i in range(1, 3):
|
2017-10-22 10:25:09 +02:00
|
|
|
values.append(
|
|
|
|
alg.parameterAsString(
|
|
|
|
parameters,
|
2019-01-31 12:50:09 +02:00
|
|
|
'set{}_{}'.format(i, param),
|
2017-10-22 10:25:09 +02:00
|
|
|
context
|
|
|
|
)
|
|
|
|
)
|
2015-12-16 17:39:16 +01:00
|
|
|
|
|
|
|
if (values[0] or values[2]) and (values[1] or values[3]):
|
2018-05-28 14:51:36 +10:00
|
|
|
return True, None
|
2015-12-16 17:39:16 +01:00
|
|
|
|
2019-01-31 12:50:09 +02:00
|
|
|
return False, alg.tr('You need to set at least setX_where or setX_cats parameters for each set!')
|
2015-12-16 17:39:16 +01:00
|
|
|
|
2016-01-02 16:14:41 +01:00
|
|
|
|
2018-04-08 09:25:27 +10:00
|
|
|
def processCommand(alg, parameters, context, feedback):
|
|
|
|
incorporatePoints(alg, parameters, context, feedback)
|
2016-01-02 16:14:41 +01:00
|
|
|
|
|
|
|
|
2018-04-08 09:25:27 +10:00
|
|
|
def processOutputs(alg, parameters, context, feedback):
|
2017-12-28 18:28:18 +01:00
|
|
|
outputParameter = {'output': ['output', 'point', 2, True]}
|
2017-10-22 10:25:09 +02:00
|
|
|
variableOutput(alg, outputParameter, parameters, context)
|