Skip to content

Commit 8b3c39a

Browse files
committedNov 3, 2016
[processing] add missed description files for OTB 5.4.0
1 parent a382ec7 commit 8b3c39a

File tree

238 files changed

+9311
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

238 files changed

+9311
-0
lines changed
 

‎python/plugins/processing/algs/otb/CMakeLists.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ FILE(GLOB HELPER_FILES helper/*.py)
33
FILE(GLOB DESCR_FILES description/5.0.0/*.xml)
44
FiLE(GLOB HELP_FILES description/5.0.0/doc/*.html)
55

6+
FILE(GLOB DESCR_FILES description/5.4.0/*.xml)
7+
FiLE(GLOB HELP_FILES description/5.4.0/doc/*.html)
8+
69
FILE(GLOB DESCR_FILES description/5.6.0/*.xml)
710
FiLE(GLOB HELP_FILES description/5.6.0/doc/*.html)
811

@@ -12,5 +15,8 @@ PLUGIN_INSTALL(processing ./algs/otb/helper ${HELPER_FILES})
1215
PLUGIN_INSTALL(processing ./algs/otb/description/5.0.0 ${DESCR_FILES})
1316
PLUGIN_INSTALL(processing ./algs/otb/description/5.0.0/doc ${HELP_FILES})
1417

18+
PLUGIN_INSTALL(processing ./algs/otb/description/5.4.0 ${DESCR_FILES})
19+
PLUGIN_INSTALL(processing ./algs/otb/description/5.4.0/doc ${HELP_FILES})
20+
1521
PLUGIN_INSTALL(processing ./algs/otb/description/5.6.0 ${DESCR_FILES})
1622
PLUGIN_INSTALL(processing ./algs/otb/description/5.6.0/doc ${HELP_FILES})
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<root>
2+
<key>BandMath</key>
3+
<exec>otbcli_BandMath</exec>
4+
<longname>Band Math</longname>
5+
<group>Miscellaneous</group>
6+
<description>Perform a mathematical operation on monoband images</description>
7+
<parameter>
8+
<parameter_type source_parameter_type="ParameterType_InputImageList">ParameterMultipleInput</parameter_type>
9+
<key>il</key>
10+
<name>Input image list</name>
11+
<description>Image list to perform computation on.</description>
12+
<datatype />
13+
<optional>False</optional>
14+
</parameter>
15+
<parameter>
16+
<parameter_type source_parameter_type="ParameterType_OutputImage">OutputRaster</parameter_type>
17+
<key>out</key>
18+
<name>Output Image</name>
19+
<description>Output image.</description>
20+
<hidden />
21+
</parameter>
22+
<parameter>
23+
<parameter_type source_parameter_type="ParameterType_RAM">ParameterNumber</parameter_type>
24+
<key>ram</key>
25+
<name>Available RAM (Mb)</name>
26+
<description>Available memory for processing (in MB)</description>
27+
<minValue />
28+
<maxValue />
29+
<default>128</default>
30+
<optional>True</optional>
31+
</parameter>
32+
<parameter>
33+
<parameter_type source_parameter_type="ParameterType_String">ParameterString</parameter_type>
34+
<key>exp</key>
35+
<name>Expression</name>
36+
<description>The mathematical expression to apply.
37+
Use im1b1 for the first band, im1b2 for the second one...</description>
38+
<default />
39+
<multiline />
40+
<optional>False</optional>
41+
<evaluateExpressions />
42+
</parameter>
43+
</root>

0 commit comments

Comments
 (0)
Please sign in to comment.