1 | #!/bin/bash |
---|
2 | # |
---|
3 | # Author : Gérald FENOY |
---|
4 | # |
---|
5 | # Copyright 2015 GeoLabs SARL. All rights reserved. |
---|
6 | # |
---|
7 | # Permission is hereby granted, free of charge, to any person obtaining a copy |
---|
8 | # of this software and associated documentation files (the "Software"), to deal |
---|
9 | # in the Software without restriction, including without limitation the rights |
---|
10 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
---|
11 | # copies of the Software, and to permit persons to whom the Software is |
---|
12 | # furnished to do so, subject to the following conditions: |
---|
13 | # |
---|
14 | # The above copyright notice and this permission notice shall be included in |
---|
15 | # all copies or substantial portions of the Software. |
---|
16 | # |
---|
17 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
18 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
19 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
20 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
21 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
---|
22 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
---|
23 | # THE SOFTWARE. |
---|
24 | |
---|
25 | |
---|
26 | |
---|
27 | |
---|
28 | # Set below the location of the xsl file |
---|
29 | XSL=/Users/djay/MapMint/zoo-project-1.5.0/trunk/thirds/grass/xml2zcfg.xsl |
---|
30 | |
---|
31 | # Set below the location of your GRASS 7.0.X installation |
---|
32 | GRASSROOT=/Applications/GRASS-7.0.app/Contents/MacOS |
---|
33 | |
---|
34 | for i in $(ls $GRASSROOT/bin/{v,r}.* | grep -v "v\.in" | grep -v "v\.out" | grep -v "r\.in" | grep -v "r\.out" ); |
---|
35 | do |
---|
36 | j=$(echo $i | sed "s:$GRASSROOT/bin/::g") |
---|
37 | zcfg=$(echo $j | sed "s:\.:_:g") |
---|
38 | $i --wps-process-description > $zcfg.xml |
---|
39 | xsltproc $XSL $zcfg.xml > $zcfg.zcfg |
---|
40 | rm $zcfg.xml |
---|
41 | echo "##################################################### |
---|
42 | # This service was generated using wps-grass-bridge # |
---|
43 | ##################################################### |
---|
44 | import ZOOGrassModuleStarter as zoo |
---|
45 | def $zcfg(m, inputs, outputs): |
---|
46 | service = zoo.ZOOGrassModuleStarter() |
---|
47 | service.fromMaps(\"$j\", inputs, outputs) |
---|
48 | return 3 |
---|
49 | " > $zcfg.py |
---|
50 | done |
---|