-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Médéric RIBREUX
committed
May 29, 2016
1 parent
a231bbd
commit 83b6cfd
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
python/plugins/processing/algs/grass7/description/i.gensigset.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
i.gensigset | ||
Generates statistics for i.smap from raster map. | ||
Imagery (i.*) | ||
ParameterRaster|trainingmap|Ground truth training map|False | ||
ParameterMultipleInput|input|Input rasters|3|False | ||
ParameterNumber|maxsig|Maximum number of sub-signatures in any class|1|None|5|True | ||
OutputFile|signaturefile|Signature File | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
*************************************************************************** | ||
i_gensigset.py | ||
-------------- | ||
Date : March 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__ = 'March 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$' | ||
|
||
from i import regroupRasters, file2Output, moveFile | ||
from os import path | ||
from ..Grass7Utils import Grass7Utils | ||
|
||
|
||
def processCommand(alg): | ||
# Transform output files in string parameter | ||
signatureFile = alg.getOutputFromName('signaturefile') | ||
origSigFile = signatureFile.value | ||
shortSigFile = path.basename(origSigFile) | ||
alg.setOutputValue('signaturefile', shortSigFile) | ||
|
||
signatureFile = file2Output(alg, 'signaturefile') | ||
|
||
# Regroup rasters | ||
group, subgroup = regroupRasters(alg, 'input', 'group', 'subgroup') | ||
|
||
# Re-add signature files | ||
alg.addOutput(signatureFile) | ||
|
||
# Find Grass directory | ||
interSig = path.join(Grass7Utils.grassMapsetFolder(), 'PERMANENT', 'group', group, 'subgroup', subgroup, 'sigset', shortSigFile) | ||
moveFile(alg, interSig, origSigFile) | ||
alg.setOutputValue('signaturefile', origSigFile) |