Revision 1125

View differences:

org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3

  
4
	<modelVersion>4.0.0</modelVersion>
5
	<artifactId>org.gvsig.geoprocess</artifactId>
6
	<packaging>pom</packaging>
7
	<name>org.gvsig.geoprocess</name>
8
	<description>Geoprocessing projects</description>
9
	<version>2.2.101</version>
10

  
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.desktop</artifactId>
14
                <version>2.0.237</version>
15
	</parent>
16

  
17
	<properties>
18
		<!-- El plugin versions:use-latest-versions falla con scope import -->
19
		<!-- asi que toca usar el versions:update-properties que si que funciona -->
20
		<org.gvsig.raster.version>2.2.90</org.gvsig.raster.version>
21
		<org.gvsig.toolbox.version>1.0.57</org.gvsig.toolbox.version>
22
	</properties>
23
	<scm>
24
		<connection>scm:svn:https://devel.gvsig.org/svn/gvsig-geoprocess/org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101</connection>
25
		<developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-geoprocess/org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101</developerConnection>
26
		<url>https://devel.gvsig.org/redmine/projects/gvsig-geoprocess/repository/show/org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101</url>
27
	</scm>
28

  
29
	<repositories>
30
		<repository>
31
			<id>gvsig-public-http-repository</id>
32
			<name>gvSIG maven public HTTP repository</name>
33
			<url>http://devel.gvsig.org/m2repo/j2se</url>
34
			<releases>
35
				<enabled>true</enabled>
36
				<updatePolicy>daily</updatePolicy>
37
				<checksumPolicy>warn</checksumPolicy>
38
			</releases>
39
			<snapshots>
40
				<enabled>true</enabled>
41
				<updatePolicy>daily</updatePolicy>
42
				<checksumPolicy>warn</checksumPolicy>
43
			</snapshots>
44
		</repository>
45
	</repositories>
46

  
47
	<dependencyManagement>
48
		<dependencies>
49
			<dependency>
50
				<groupId>org.gvsig</groupId>
51
				<artifactId>org.gvsig.raster</artifactId>
52
				<version>${org.gvsig.raster.version}</version>
53
				<type>pom</type>
54
				<scope>import</scope>
55
			</dependency>
56
			<dependency>
57
				<groupId>org.gvsig</groupId>
58
				<artifactId>org.gvsig.toolbox</artifactId>
59
				<version>${org.gvsig.toolbox.version}</version>
60
				<type>pom</type>
61
				<scope>import</scope>
62
			</dependency>
63
			<dependency>
64
				<groupId>org.gvsig</groupId>
65
				<artifactId>org.gvsig.geoprocess.app.mainplugin</artifactId>
66
				<version>2.2.101</version>
67
			</dependency>
68
			<dependency>
69
				<groupId>org.gvsig</groupId>
70
				<artifactId>org.gvsig.geoprocess.lib.api</artifactId>
71
				<version>2.2.101</version>
72
			</dependency>
73
			<dependency>
74
				<groupId>org.gvsig</groupId>
75
				<artifactId>org.gvsig.geoprocess.lib.sextante</artifactId>
76
				<version>2.2.101</version>
77
			</dependency>
78
			<dependency>
79
				<groupId>org.gvsig</groupId>
80
				<artifactId>org.gvsig.geoprocess.algorithm.base</artifactId>
81
				<version>2.2.101</version>
82
			</dependency>
83
			<dependency>
84
				<groupId>org.gvsig</groupId>
85
				<artifactId>org.gvsig.geoprocess.algorithm.buffer</artifactId>
86
				<version>2.2.101</version>
87
			</dependency>
88
			<dependency>
89
				<groupId>org.gvsig</groupId>
90
				<artifactId>org.gvsig.geoprocess.algorithm.clip</artifactId>
91
				<version>2.2.101</version>
92
			</dependency>
93
			<dependency>
94
				<groupId>org.gvsig</groupId>
95
				<artifactId>org.gvsig.geoprocess.algorithm.convexhull</artifactId>
96
				<version>2.2.101</version>
97
			</dependency>
98
			<dependency>
99
				<groupId>org.gvsig</groupId>
100
				<artifactId>org.gvsig.geoprocess.algorithm.difference</artifactId>
101
				<version>2.2.101</version>
102
			</dependency>
103
			<dependency>
104
				<groupId>org.gvsig</groupId>
105
				<artifactId>org.gvsig.geoprocess.algorithm.dissolve</artifactId>
106
				<version>2.2.101</version>
107
			</dependency>
108
			<dependency>
109
				<groupId>org.gvsig</groupId>
110
				<artifactId>org.gvsig.geoprocess.algorithm.fusespatially</artifactId>
111
				<version>2.2.101</version>
112
			</dependency>
113
			<dependency>
114
				<groupId>org.gvsig</groupId>
115
				<artifactId>org.gvsig.geoprocess.algorithm.intersection</artifactId>
116
				<version>2.2.101</version>
117
			</dependency>
118
			<dependency>
119
				<groupId>org.gvsig</groupId>
120
				<artifactId>org.gvsig.geoprocess.algorithm.merge</artifactId>
121
				<version>2.2.101</version>
122
			</dependency>
123
			<dependency>
124
				<groupId>org.gvsig</groupId>
125
				<artifactId>org.gvsig.geoprocess.algorithm.reproject</artifactId>
126
				<version>2.2.101</version>
127
			</dependency>
128
			<dependency>
129
				<groupId>org.gvsig</groupId>
130
				<artifactId>org.gvsig.geoprocess.algorithm.spatialjoin</artifactId>
131
				<version>2.2.101</version>
132
			</dependency>
133
			<dependency>
134
				<groupId>org.gvsig</groupId>
135
				<artifactId>org.gvsig.geoprocess.algorithm.union</artifactId>
136
				<version>2.2.101</version>
137
			</dependency>
138
			<dependency>
139
				<groupId>org.gvsig</groupId>
140
				<artifactId>org.gvsig.geoprocess.algorithm.xyshift</artifactId>
141
				<version>2.2.101</version>
142
			</dependency>
143
			<dependency>
144
				<groupId>org.gvsig</groupId>
145
				<artifactId>org.gvsig.geoprocess.algorithm.groupby</artifactId>
146
				<version>2.2.101</version>
147
			</dependency>
148
			<dependency>
149
				<groupId>org.gvsig</groupId>
150
				<artifactId>org.gvsig.geoprocess.algorithm.lateralbuffer</artifactId>
151
				<version>2.2.101</version>
152
			</dependency>
153
			<dependency>
154
				<groupId>org.gvsig</groupId>
155
				<artifactId>org.gvsig.geoprocess.algorithm.splitlines</artifactId>
156
				<version>2.2.101</version>
157
			</dependency>
158
      <dependency>
159
        <groupId>org.gvsig</groupId>
160
        <artifactId>org.gvsig.geoprocess.algorithm.dispersepoints</artifactId>
161
        <version>2.2.101</version>
162
      </dependency>
163
			<dependency>
164
				<groupId>org.japura</groupId>
165
				<artifactId>org.japura</artifactId>
166
				<version>1.14.0</version>
167
			</dependency>
168
  <dependency>
169
    <groupId>org.mapdb</groupId>
170
    <artifactId>mapdb</artifactId>
171
    <version>3.0.5</version>
172
  </dependency>
173

  
174

  
175
          <dependency>
176
            <groupId>org.jetbrains.kotlin</groupId>
177
            <artifactId>kotlin-stdlib</artifactId>
178
            <version>1.0.7</version>
179
          </dependency>
180

  
181
          <dependency>
182
            <groupId>org.jetbrains.kotlin</groupId>
183
            <artifactId>kotlin-runtime</artifactId>
184
            <version>1.0.7</version>
185
          </dependency>
186

  
187
          <dependency>
188
            <groupId>org.eclipse.collections</groupId>
189
            <artifactId>eclipse-collections-api</artifactId>
190
            <version>7.1.1</version>
191
          </dependency>
192

  
193
          <dependency>
194
            <groupId>net.jcip</groupId>
195
            <artifactId>jcip-annotations</artifactId>
196
            <version>1.0</version>
197
          </dependency>
198

  
199
          <dependency>
200
            <groupId>org.eclipse.collections</groupId>
201
            <artifactId>eclipse-collections</artifactId>
202
            <version>7.1.1</version>
203
          </dependency>
204

  
205
          <dependency>
206
            <groupId>org.eclipse.collections</groupId>
207
            <artifactId>eclipse-collections-forkjoin</artifactId>
208
            <version>7.1.1</version>
209
          </dependency>
210

  
211
          <dependency>
212
            <groupId>com.google.guava</groupId>
213
            <artifactId>guava</artifactId>
214
            <version>19.0</version>
215
          </dependency>
216

  
217
          <dependency>
218
            <groupId>net.jpountz.lz4</groupId>
219
            <artifactId>lz4</artifactId>
220
            <version>1.3.0</version>
221
          </dependency>
222

  
223
          <dependency>
224
            <groupId>org.mapdb</groupId>
225
            <artifactId>elsa</artifactId>
226
            <version>3.0.0-M5</version>
227
          </dependency>
228

  
229
		</dependencies>
230
	</dependencyManagement>
231

  
232
	<build>
233
		<plugins>
234
			<plugin>
235
				<groupId>org.apache.maven.plugins</groupId>
236
				<artifactId>maven-release-plugin</artifactId>
237
				<configuration>
238
					<tagBase>https://devel.gvsig.org/svn/gvsig-geoprocess/org.gvsig.geoprocess/tags/</tagBase>
239
					<goals>deploy</goals>
240
				</configuration>
241
			</plugin>
242

  
243
			<plugin>
244
				<groupId>org.apache.maven.plugins</groupId>
245
				<artifactId>maven-compiler-plugin</artifactId>
246
				<version>2.0.2</version>
247
				<configuration>
248
					<source>1.6</source>
249
					<target>1.6</target>
250
					<encoding>ISO-8859-1</encoding>
251
				</configuration>
252
			</plugin>
253

  
254
<!-- 			<plugin>
255
				<groupId>org.codehaus.mojo</groupId>
256
				<artifactId>animal-sniffer-maven-plugin</artifactId>
257
				<executions>
258
					<execution>
259
						<id>check-java-api</id>
260
						<phase>test</phase>
261
						<goals>
262
							<goal>check</goal>
263
						</goals>
264
						<configuration>
265
							<signature>
266
								<groupId>org.codehaus.mojo.signature
267
								</groupId>
268
								<artifactId>java16</artifactId>
269
								<version>1.0</version>
270
							</signature>
271
						</configuration>
272
					</execution>
273
				</executions>
274
			</plugin> -->
275

  
276
		</plugins>
277
	</build>
278

  
279
	<modules>
280
		<module>org.gvsig.geoprocess.lib</module>
281
		<module>org.gvsig.geoprocess.app</module>
282
		<module>org.gvsig.geoprocess.algorithm</module>
283
	</modules>
284
</project>
0 285

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/README.txt
1
====
2
    gvSIG. Desktop Geographic Information System.
3

  
4
    Copyright (C) 2007-2012 gvSIG Association.
5

  
6
    This program is free software; you can redistribute it and/or
7
    modify it under the terms of the GNU General Public License
8
    as published by the Free Software Foundation; either version 2
9
    of the License, or (at your option) any later version.
10

  
11
    This program is distributed in the hope that it will be useful,
12
    but WITHOUT ANY WARRANTY; without even the implied warranty of
13
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
    GNU General Public License for more details.
15

  
16
    You should have received a copy of the GNU General Public License
17
    along with this program; if not, write to the Free Software
18
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
    MA  02110-1301, USA.
20

  
21
    For any additional information, do not hesitate to contact us
22
    at info AT gvsig.com, or visit our website www.gvsig.com.
23
====
24

  
25
The first time you checkout the current project to a new workspace, 
26
you have to prepare it to be able to work easily with maven from
27
eclipse itself.
28

  
0 29

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/buildNumber.properties
1
#Mon Jan 28 13:31:28 CET 2019
2
buildNumber=2178
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/test/java/org/gvsig/sextante/app/extension/pom.xml
1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3
    <modelVersion>4.0.0</modelVersion>
4
    <artifactId>org.gvsig.sextante.app.extension</artifactId>
5
    <packaging>jar</packaging>
6
    <name>org.gvsig.sextante.app.extension</name>
7
    <version>2.0.0-SNAPSHOT</version>
8
    <description>Sextante bindings</description>
9

  
10
    <parent>
11
        <groupId>org.gvsig</groupId>
12
        <artifactId>org.gvsig.sextante.app</artifactId>
13
        <version>2.0.0-SNAPSHOT</version>
14
    </parent>
15
    
16
    <dependencies>
17
        <dependency>
18
            <groupId>org.gvsig</groupId>
19
            <artifactId>org.gvsig.about.api</artifactId>
20
            <scope>compile</scope>
21
        </dependency>
22
    </dependencies>
23

  
24
    <profiles>
25
        <profile>
26
            <id>gvsig-install</id>
27
            <activation>
28
                <activeByDefault>true</activeByDefault>
29
            </activation>
30
            <properties>
31
                <!--  gvSIG installation folder -->
32
                <gvsig.install.dir>${basedir}/../../build/product</gvsig.install.dir>
33
            </properties>
34
        </profile>
35
    </profiles>
36
</project>
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/text.properties
1
#
2
# gvSIG. Desktop Geographic Information System.
3
#
4
# Copyright (C) 2007-2012 gvSIG Association.
5
#
6
# This program is free software; you can redistribute it and/or
7
# modify it under the terms of the GNU General Public License
8
# as published by the Free Software Foundation; either version 2
9
# of the License, or (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
# MA  02110-1301, USA.
20
#
21
# For any additional information, do not hesitate to contact us
22
# at info AT gvsig.com, or visit our website www.gvsig.com.
23
#
24

  
25
Warning=Aviso
26

  
27
You_need_to_restart=Para que los cambios tengan efecto, necesita reiniciar la aplicaci\u00F3n
28

  
29
Cancel=Cancelar
30

  
31
OK=Aceptar
32

  
33
Models=Modelos
34

  
35
Algorithms=Algoritmos
36

  
37
Procedures=Procesos
38

  
39
Wrong_or_missing_parameters_definition=Par\u00E1metros invalidos o insuficientes
40

  
41
Command=Comando
42

  
43
Icon=Icono
44

  
45
Name=Nombre
46

  
47
Not_enough_data_to_run_this_command=Datos insuficientes para ejecutar el comando
48

  
49
Modeler=Modelizador
50

  
51
New_view_name=Nueva vista
52

  
53
GRASS_color_table=Tabla de color de GRASS
54

  
55
Geoprocessing_Toolbox=Caja de herramientas
56

  
57
Geoprocessing_Modeler=Modelizador
58

  
59
Geoprocessing_command_line=L\u00EDnea de comandos
60

  
61
Geoprocessing_History=Historial
62

  
63
Geoprocessing_Data_Explorer=Explorador de datos
64

  
65
Geoprocessing_Results=Resultados
66

  
67
Geoprocessing_Help=Ayuda de geoprocesamiento
68

  
69
Geoprocessing_PointCollector=Capturar coordenadas
70

  
71
remotesensing=Procesado de im\u00E1genes y teledetecci\u00F3n
72

  
73
Mosaic=Mosaico
74

  
75
MultispectralTransformation=Transformaciones multiespectrales
76

  
77
DecisionTree=\u00C1rboles de decisi\u00F3n
78

  
79
Classification=Clasificaci\u00F3n
80

  
81
Geoprocessing=Geoprocesamiento
82

  
83
Point_name=Nombre del punto
84

  
85
New_point=Nuevo punto
86

  
87
tools=Herramientas
88

  
89
Save_as=Guardar como...
90

  
91
file_operations=Fichero...
92

  
93
modeler_grid_activate=Usar grid\:
94

  
95
modeler_add_par_boolean=A\u00F1adir valor booleano
96

  
97
modeler_add_par_numerical=A\u00F1adir valor num\u00E9rico
98

  
99
modeler_add_par_string=A\u00F1adir cadena de texto
100

  
101
modeler_add_par_filepath=A\u00F1adir fichero o carpeta
102

  
103
modeler_add_par_table=A\u00F1adir tabla
104

  
105
modeler_add_par_point=A\u00F1adir punto de coordenadas
106

  
107
modeler_add_par_fixed_table=A\u00F1adir tabla fija
108

  
109
modeler_add_par_selection=A\u00F1adir opci\u00F3n
110

  
111
modeler_add_par_multiple=A\u00F1adir entrada m\u00FAltiple
112

  
113
modeler_add_par_vector=A\u00F1adir capa vectorial
114

  
115
modeler_add_par_raster=A\u00F1adir capa raster
116

  
117
modeler_add_par_raster_3D=A\u00F1adir capa raster 3D
118

  
119
modeler_add_par_band=A\u00F1adir banda raster
120

  
121
modeler_add_par_field=A\u00F1adir campo
122

  
123
modeler_edit_parameter=Editar entrada
124

  
125
modeler_add_algorithm=A\u00F1adir algoritmo
126

  
127
modeler_edit_algorithm=Editar configuraci\u00F3n del algoritmo
128

  
129
node_Inputs=Entradas
130

  
131
node_Layers=Capas
132

  
133
node_Values=Valores
134

  
135
node_Fields_and_Tables=Campos y tablas
136

  
137
node_Others=Otros
138

  
139
Raster_band=Banda raster
140

  
141
Default_value_true=Verdadero por defecto
142

  
143
nothing_to_set=<html><i>Nada que configurar.</i></html>
144

  
145
vector_type=Tipo de geometr\u00EDa\:
146

  
147
filepath_type=Tipo de entrada\:
148

  
149
filepath_file_open=Fichero (abrir)
150

  
151
filepath_file_save=Fichero (salvar)
152

  
153
filepath_folder=Carpeta
154

  
155
filepath_is_voxel_data=La entrada son datos voxel
156

  
157
file_extension=Extensi\u00F3n (ej. \"asc\")\:
158

  
159
Default_value=Valor por defecto\:
160

  
161
Value_type=Tipo de valor\:
162

  
163
Max_value=Valor m\u00E1ximo\:
164

  
165
Min_value=Valor m\u00EDnimo\:
166

  
167
Filepath=Fichero o carpeta
168

  
169
Description=Descripci\u00F3n\:
170

  
171
Default_value=Valor por defecto\:
172

  
173
Number_of_columns=N\u00FAmero de columnas\:
174

  
175
Number_of_rows=N\u00FAmero de filas\:
0 176

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/text_en.properties
1
#
2
# gvSIG. Desktop Geographic Information System.
3
#
4
# Copyright (C) 2007-2012 gvSIG Association.
5
#
6
# This program is free software; you can redistribute it and/or
7
# modify it under the terms of the GNU General Public License
8
# as published by the Free Software Foundation; either version 2
9
# of the License, or (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
# MA  02110-1301, USA.
20
#
21
# For any additional information, do not hesitate to contact us
22
# at info AT gvsig.com, or visit our website www.gvsig.com.
23
#
24

  
25
Warning=Warning
26

  
27
You_need_to_restart=You need to restart the application for changes to take effect.
28

  
29
Cancel=Cancel
30

  
31
OK=OK
32

  
33
Models=Models
34

  
35
Algorithms=Algorithms
36

  
37
Procedures=Procedures
38

  
39
Wrong_or_missing_parameters_definition=Wrong or missing parameters definition
40

  
41
Command=Command
42

  
43
Icon=Icon
44

  
45
Name=Name
46

  
47
Not_enough_data_to_run_this_command=Not enough data to run this command
48

  
49
Modeler=Modeler
50

  
51
New_view_name=New view
52

  
53
GRASS_color_table=GRASS color table
54

  
55
Geoprocessing_Toolbox=Toolbox
56

  
57
Geoprocessing_Modeler=Modeler
58

  
59
Geoprocessing_command_line=Command line
60

  
61
Geoprocessing_History=History
62

  
63
Geoprocessing_Data_Explorer=Data explorer
64

  
65
Geoprocessing_Results=Results
66

  
67
Geoprocessing_Help=Geoprocessing help
68

  
69
Geoprocessing_PointCollector=Catch coordinates
70

  
71
remotesensing=Remote sensing
72

  
73
Mosaic=Mosaic
74

  
75
MultispectralTransformation=Multispectral transformation
76

  
77
DecisionTree=Decision tree
78

  
79
Classification=Classification
80

  
81
Geoprocessing=Geoprocessing
82

  
83
Point_name=Point name
84

  
85
New_point=New point
86

  
87
tools=Tools
88

  
89
Default_value=Default value\:
90

  
91
Value_type=Type of value\:
92

  
93
Max_value=Max. value\:
94

  
95
Min_value=Min. value\:
96

  
97
Filepath=File or folder
98

  
99
Description=Description\:
100

  
101
Number_of_columns=N\u00FAmero de columnas\: 
102

  
103
Number_of_rows=N\u00FAmero de filas\: 
0 104

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<!--
3

  
4
    gvSIG. Desktop Geographic Information System.
5

  
6
    Copyright (C) 2007-2012 gvSIG Association.
7

  
8
    This program is free software; you can redistribute it and/or
9
    modify it under the terms of the GNU General Public License
10
    as published by the Free Software Foundation; either version 2
11
    of the License, or (at your option) any later version.
12

  
13
    This program is distributed in the hope that it will be useful,
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
    GNU General Public License for more details.
17

  
18
    You should have received a copy of the GNU General Public License
19
    along with this program; if not, write to the Free Software
20
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21
    MA  02110-1301, USA.
22

  
23
    For any additional information, do not hesitate to contact us
24
    at info AT gvsig.com, or visit our website www.gvsig.com.
25

  
26
-->
27
<plugin-config>
28
	<depends plugin-name="org.gvsig.app.mainplugin" />
29
	<!-- Necesario para el soporte de capas r?ster -->
30
	<depends plugin-name="org.gvsig.raster.mainplugin" />
31
	<!--<depends plugin-name="org.gvsig.raster.reproject.app.reprojectclient" />-->
32
	<depends plugin-name="org.gvsig.geoprocess.app.mainplugin.i18n" optional="true" />
33
	<libraries library-dir="lib" />
34
	<resourceBundle name="text" />
35
	<extensions>
36
		<extension class-name="org.gvsig.geoprocess.extension.GeoprocessExtension"
37
			description="Geoprocessing Toolbox" active="true">
38

  
39
 			<action
40
       			name="tools-geoprocessing-toolbox"
41
        		label="Geoprocessing_Toolbox"
42
        		tooltip="Geoprocessing_Toolbox"
43
        		action-command="GEOPROCESS_SELECTOR"
44
        		icon="images/menu-process-icon.gif"
45
        		position="1"
46
        		accelerator=""/>
47

  
48
        	<action
49
       			name="tools-geoprocessing-modeler"
50
        		label="Geoprocessing_Modeler"
51
        		tooltip="Geoprocessing_Modeler"
52
        		action-command="GEOPROCESS_MODELER"
53
        		icon="images/model.png"
54
        		position="2"
55
        		accelerator=""/>
56

  
57
        	<action
58
       			name="tools-geoprocessing-history"
59
        		label="Geoprocessing_History"
60
        		tooltip="Geoprocessing_History"
61
        		action-command="GEOPROCESS_HISTORY"
62
        		icon="images/history.gif"
63
        		position="3"
64
        		accelerator=""/>
65

  
66
        	<action
67
       			name="tools-geoprocessing-command-line"
68
        		label="Geoprocessing_command_line"
69
        		tooltip="Geoprocessing_command_line"
70
        		action-command="GEOPROCESS_COMMAND_LINE"
71
        		icon="images/terminal.png"
72
        		position="4"
73
        		accelerator=""/>
74

  
75
        	<action
76
       			name="tools-geoprocessing-results"
77
        		label="Geoprocessing_Results"
78
        		tooltip="Geoprocessing_Results"
79
        		action-command="GEOPROCESS_RESULTS"
80
        		icon="images/chart.gif"
81
        		position="5"
82
        		accelerator=""/>
83

  
84
        	<action
85
       			name="tools-geoprocessing-data-explorer"
86
        		label="Geoprocessing_Data_Explorer"
87
        		tooltip="Geoprocessing_Data_Explorer"
88
        		action-command="GEOPROCESS_DATAEXPLORER"
89
        		icon="images/documenter.png"
90
        		position="6"
91
        		accelerator=""/>
92

  
93
        	<action
94
       			name="tools-geoprocessing-help"
95
        		label="Geoprocessing_Help"
96
        		tooltip="Geoprocessing_Help"
97
        		action-command="GEOPROCESS_HELP"
98
        		icon="images/help.png"
99
        		position="7"
100
        		accelerator=""/>
101

  
102
			<menu text="tools/Geoprocessing/Geoprocessing_Toolbox"
103
				  name="tools-geoprocessing-toolbox"/>
104

  
105
			<menu text="tools/Geoprocessing/Geoprocessing_Modeler"
106
				  name="tools-geoprocessing-modeler" />
107

  
108
			<menu text="tools/Geoprocessing/Geoprocessing_History"
109
				  name="tools-geoprocessing-history" />
110

  
111
			<menu text="tools/Geoprocessing/Geoprocessing_command_line"
112
				  name="tools-geoprocessing-command-line" />
113

  
114
			<menu text="tools/Geoprocessing/Geoprocessing_Results"
115
			      name="tools-geoprocessing-results" />
116

  
117
			<menu text="tools/Geoprocessing/Geoprocessing_Data_Explorer"
118
				  name="tools-geoprocessing-data-explorer" />
119

  
120
			<menu text="tools/Geoprocessing/Geoprocessing_Help"
121
			      name="tools-geoprocessing-help" />
122

  
123
			<tool-bar name="Geoprocessing" position="9000">
124
				<action-tool name="tools-geoprocessing-toolbox" />
125
			</tool-bar>
126

  
127
		</extension>
128

  
129
<!--		<extension class-name="org.gvsig.geoprocess.extension.GeoprocessPointSelectionExtension"
130
			description="Catch coordinates" active="true">
131
			<action
132
       			name="tools-geoprocessing-pointCollector"
133
        		label="Geoprocessing_PointCollector"
134
        		tooltip="Geoprocessing_PointCollector"
135
        		action-command=""
136
        		icon="images/bullseye.gif"
137
        		position="8"
138
        		accelerator=""/>
139

  
140
			<menu text="tools/Geoprocessing/Geoprocessing_PointCollector"
141
				name="tools-geoprocessing-pointCollector" />
142

  
143
      <tool-bar name="Geoprocessing" position="9000">
144
        <action-tool name="tools-geoprocessing-pointCollector" />
145
      </tool-bar>
146

  
147
		</extension>-->
148
	</extensions>
149
</plugin-config>
0 150

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/text_fr.properties
1
#
2
# gvSIG. Desktop Geographic Information System.
3
#
4
# Copyright (C) 2007-2012 gvSIG Association.
5
#
6
# This program is free software; you can redistribute it and/or
7
# modify it under the terms of the GNU General Public License
8
# as published by the Free Software Foundation; either version 2
9
# of the License, or (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
# MA  02110-1301, USA.
20
#
21
# For any additional information, do not hesitate to contact us
22
# at info AT gvsig.com, or visit our website www.gvsig.com.
23
#
24

  
25
#Modified by DOKSoft PropEditor. http://www.doksoft.com
26
#Thu Apr 29 17:17:25 EDT 2010
27
Command=Commande
28
Icon=Ic\u00F4ne
29
Modeler=Modeler
30
OK=Accepter
31
Models=Mod\u00E8les
32
Name=Nom
33
Warning=Avertissement
34
Procedures=Proc\u00E9dures
35
Algorithms=Algorithmes
36
Not_enough_data_to_run_this_command=Pas assez de donn\u00E9es pour ex\u00E9cuter cette commande
37
Wrong_or_missing_parameters_definition=Param\u00E8tres incorrects ou manquants 
38
You_need_to_restart=Vous devez red\u00E9marrer l'application pour les modifications prennent effet.
39
Cancel=Annuler
0 40

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/help/hipsometry.model.xml
1
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
2
	<help>
3
		<element name="DESCRIPTION" text="This algorithm calculates the hipsography of a watershed, given its outlet point and a DEM. The watershed is calculated and then used as a mask, to mask out values outside of the watershed. The resulting hypsometry is, thus, calculated using only values from cells belonging to the watershed." description="Description" type="0">
4
		</element>
5
		<element name="ADDITIONAL_INFO" text="This model has been created as an example to show users how to create complex models using the SEXTANTE modeler. Please, open it in the modeler to study its structure and learn more about how to use this powerful and versatile element of SEXTANTE. Feel free to edit the model to adapt it to your particular needs." description="Additional information" type="0">
6
		</element>
7
		<element name="EXTENSION_AUTHOR" text="V&#237;ctor Olaya" description="Algorithm created by" type="0">
8
		</element>
9
		<element name="HELP_AUTHOR" text="V&#237;ctor Olaya" description="Help file created by" type="0">
10
		</element>
11
		<element name="USER_NOTES" text="" description="User_notes" type="0">
12
		</element>
13
		<element name="INPUT0" text="A Digital Elevation Model" description="DEM" type="3">
14
		</element>
15
		<element name="INPUT1" text="The coordinates of the outlet point to be used to delineate the watershed" description="Coordinate" type="3">
16
		</element>
17
		<element name="OUTPUT_DESCRIPTION" text="" description="Description" type="2">
18
		</element>
19
	</help>
20
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
0 21

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/help/en/es.unex.sextante.vectorTools.pointsToLine/pointstoline.xml
1
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
2
	<help>
3
		<element name="DESCRIPTION" text="This algorithm creates a new lines layer with a single line. This line contains as nodes the points from a given points layer. Points are ordered in the same order as they appear in the points layer.&#10;&#10;The attributes table of the resulting layer contain the same fields as the one of the input layer. The only line contained in the resulting layer has the values of the first point of the input layer.&#10;&#10;A minimum of two points in the input layer is required to run this algorithm." description="Description" type="0">
4
		</element>
5
		<element name="ADDITIONAL_INFO" text="" description="Additional information" type="0">
6
		</element>
7
		<element name="EXTENSION_AUTHOR" text="Victor Olaya" description="Algorithm created by" type="0">
8
		</element>
9
		<element name="HELP_AUTHOR" text="Victor Olaya" description="Help file created by" type="0">
10
		</element>
11
		<element name="USER_NOTES" text="" description="User notes" type="0">
12
		</element>
13
		<element name="LAYER" text="The input points layer" description="Points" type="3">
14
		</element>
15
		<element name="OUTPUT_DESCRIPTION" text="" description="Description" type="2">
16
		</element>
17
		<element name="RESULT" text="The resulting layer with one line creted from the input points." description="Line" type="2">
18
		</element>
19
	</help>
20
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/help/en/es.unex.sextante.pointAnalysis.distanceMatrix/distancematrix.xml
1
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
2
	<help>
3
		<element name="DESCRIPTION" text="This algorithm calculate the distance from each point to all the other ones in the layer. Distances are shown in a n x n table, n being the number of points in the input layer." description="Description" type="0">
4
		</element>
5
		<element name="ADDITIONAL_INFO" text="" description="Additional information" type="0">
6
		</element>
7
		<element name="EXTENSION_AUTHOR" text="Victor Olaya" description="Extension created by" type="0">
8
		</element>
9
		<element name="HELP_AUTHOR" text="Victor Olaya" description="Help file created by" type="0">
10
		</element>
11
		<element name="USER_NOTES" text="" description="User_notes" type="0">
12
		</element>
13
		<element name="POINTS" text="The input points layer" description="Points" type="3">
14
		</element>
15
		<element name="OUTPUT_DESCRIPTION" text="" description="Description" type="2">
16
		</element>
17
		<element name="RESULT" text="Cell (i,j) in the table represents the distance between points i an j" description="Distance matrix" type="2">
18
			<image description="" file="distance_matrix.jpg">
19
			</image>
20
		</element>
21
	</help>
22
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
0 23

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/help/en/es.unex.sextante.gridStatistics.multiGridMedian/multigridmedian.xml
1
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
2
	<help>
3
		<element name="DESCRIPTION" text="This algorithm calculates the mean value for each cell in a set of raster layers." description="Description" type="0">
4
		</element>
5
		<element name="ADDITIONAL_INFO" text="" description="Additional information" type="0">
6
		</element>
7
		<element name="EXTENSION_AUTHOR" text="Victor Olaya" description="Extension created by" type="0">
8
		</element>
9
		<element name="HELP_AUTHOR" text="Victor Olaya" description="Help file created by" type="0">
10
		</element>
11
		<element name="USER_NOTES" text="" description="User_notes" type="0">
12
		</element>
13
		<element name="INPUT" text="The set of input layers" description="Layers" type="3">
14
		</element>
15
		<element name="NODATA" text="if this option is selected, the presence of a cell with no data value will cancel the calculation and assign the no-data value to the resulting cell . If this is not selected, cells with no data value will be ignored and the resulting value will be based only on valid data cells." description="Force no-data value" type="3">
16
		</element>
17
		<element name="OUTPUT_DESCRIPTION" text="" description="Description" type="2">
18
		</element>
19
		<element name="RESULT" text="" description="Median" type="2">
20
		</element>
21
	</help>
22
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
0 23

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/help/en/es.unex.sextante.gridCalculus.gridCalculator/gridcalculator.xml
1
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
2
	<help>
3
		<element name="DESCRIPTION" text="The extension Raster calculator allows the computation of algebraic expressions with raster layers, obtaining derived information in the form of new layers of geographical data.&#10;&#10;All the elements that maybe selected such as layers, functions, operators and constants will appear on the left hand part of the parameter window.&#10;&#10;By double clicking an element, its value will be added to the Formula text box. Expressions can also be  entered directly by typing the different formulas and values on the text box (see  below for details about general syntax).&#10;&#10;The most common operators  appear on the  right side of the window." description="Description" type="0">
4
		</element>
5
		<element name="ADDITIONAL_INFO" text="" description="Additional information" type="0">
6
		</element>
7
		<element name="EXTENSION_AUTHOR" text="Victor Olaya" description="Extension created by" type="0">
8
		</element>
9
		<element name="HELP_AUTHOR" text="Victor Olaya" description="Help file created by" type="0">
10
		</element>
11
		<element name="USER_NOTES" text="" description="User_notes" type="0">
12
		</element>
13
		<element name="FORMULA" text='Notes on general syntax&#10;&#10;TO add a layer, just enter its name. In the case of multiband layers, you can use "Band" followed by band number. Example, "mde.asc Band 1".&#10;&#10;You can also use the "|" sign, example "image.tif|2".&#10;&#10;Functions:&#10;&#10;* sin(x): returns the sine of x (x should be within the radius).&#10;* cos(x): returns the  cosine of x (x should be within the radius).&#10;* tan(x): returns the  tangent of x (x should be within the radius).&#10;* asin(x): returns the archsine of  x (x should be within the radius).&#10;* acos(x): returns the archcosine of  x (x should be within the radius).&#10;* atan(x): returns the archcotangent de x (x should be within the radius).&#10;* atan2(x/y): returns the archcotangent of  x/y (x/y should be within the radius).&#10;* sinh(x): returns the  hyperbolic sine of x (x should be within the radius).&#10;* cosh(x): returns the hyperbolic cosine of x (x should be within the radius ).&#10;* atanh(x): returns the inverse hyperbolic  tangent  of x (x should be in the radius).&#10;* In(x): returns the logarithm of  x.&#10;* log(x): returns the base-10 logarithm.&#10;* exp(x): returns the  exponential function of  x.&#10;* abs(x): returns the absolute value of  x.&#10;* rand(): returns a random value  within the range 0-1.&#10;* mod(x/y): returns the module of  x/y.&#10;* sqrt(x): returns the positive square root of x.&#10;* if(): returns 1 if the expression inside the parenthesis is true, 0  otherwise.&#10;&#10;Operators. The  precedence of  operators is as usual : + and - are evaluated after ? y /, and these after the power operator. Use parenthesis in case of doubt, to be sure of how the program will evaluate the introduced formula.&#10;* + (add)&#10;* - (subtract)&#10;* (multiplication)&#10;* / (division)&#10;*  % (percentage)&#10;* ! (NOT)&#10;*  ^ (elevated to)&#10;* &amp;&amp; (AND)&#10;* || (OR)&#10;* &lt; (less than)&#10;* &gt; (more than)&#10;* &lt;= (less or equal to)&#10;* &gt;= (more or equal to)&#10;*  == (iqual to)&#10;* != (different from)&#10;&#10;Constants. &#10;* Pi&#10;* Cell size[raster layer]&#10;* e' description="Formula" type="3">
14
		</element>
15
		<element name="OUTPUT_DESCRIPTION" text="" description="Description" type="2">
16
		</element>
17
		<element name="RESULT" text="New raster layer." description="Result" type="2">
18
		</element>
19
	</help>
20
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
0 21

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/help/en/es.unex.sextante.gridStatistics.neighborhoodNumberOfClasses/neighborhoodnumberofclasses.xml
1
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
2
	<help>
3
		<element name="DESCRIPTION" text="This algorithm creates a new layer with the number of different classes existing in a given analysis window around each cell" description="Description" type="0">
4
		</element>
5
		<element name="ADDITIONAL_INFO" text="" description="Additional information" type="0">
6
		</element>
7
		<element name="EXTENSION_AUTHOR" text="Victor Olaya" description="Extension created by" type="0">
8
		</element>
9
		<element name="HELP_AUTHOR" text="Victor Olaya" description="Help file created by" type="0">
10
		</element>
11
		<element name="USER_NOTES" text="" description="User_notes" type="0">
12
		</element>
13
		<element name="LAYER" text="The input layer" description="Layer" type="3">
14
		</element>
15
		<element name="RADIUS" text="The radius of the analysis widow (in cells)." description="Radius" type="3">
16
		</element>
17
		<element name="NODATA" text="if this option is selected, the presence of a cell with no data value will cancel the calculation and assign the no-data value to the resulting cell . If this is not selected, cells with no data value will be ignored and the resulting value will be based only on valid data cells." description="Force no-data value" type="3">
18
		</element>
19
		<element name="OUTPUT_DESCRIPTION" text="" description="Description" type="2">
20
		</element>
21
		<element name="RESULT" text="" description="Number of different classes" type="2">
22
		</element>
23
	</help>
24
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
0 25

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/help/en/es.unex.sextante.vectorTools.fixedDistanceBuffer/fixeddistancebuffer.xml
1
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
2
	<help>
3
		<element name="DESCRIPTION" text="This algorithm creates a new polygon layer with buffers around features in the input layer. All buffers will have the same size, regardless of the feature being buffered.&#10;" description="Description" type="0">
4
			<image description="" file="zona_de_influencia.png">
5
			</image>
6
		</element>
7
		<element name="ADDITIONAL_INFO" text="" description="Additional information" type="0">
8
		</element>
9
		<element name="EXTENSION_AUTHOR" text="Victor Olaya" description="Algorithm created by" type="0">
10
		</element>
11
		<element name="HELP_AUTHOR" text="Victor Olaya" description="Help file created by" type="0">
12
		</element>
13
		<element name="USER_NOTES" text="" description="User_notes" type="0">
14
		</element>
15
		<element name="LAYER" text="The layer with features to buffer" description="Input layer" type="3">
16
		</element>
17
		<element name="DISTANCE" text="The distance that defines the size of buffers to be created" description="Distance" type="3">
18
		</element>
19
		<element name="TYPES" text="The following methods are available&#10;* Inside the polygon: &#10;* Inside and outside the polygon: &#10;* Outside the polygon: " description="Buffer type" type="3">
20
		</element>
21
		<element name="RINGS" text="The number of concentric rings to create (from 1 to 3)" description="Number of concentric rings" type="3">
22
		</element>
23
		<element name="NOTROUNDED" text="If selected, resulting polygons will not be rounded" description="Do not round resulting polygons" type="3">
24
		</element>
25
		<element name="OUTPUT_DESCRIPTION" text="" description="Description" type="2">
26
		</element>
27
		<element name="RESULT" text="The resulting buffer layer" description="Buffer" type="2">
28
		</element>
29
	</help>
30
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
0 31

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/help/en/es.unex.sextante.morphometry.curvatures/curvatures.xml
1
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
2
	<help>
3
		<element name="DESCRIPTION" text="Curvatures provide information about the concavity or convexity of a surface area in a given point." description="Description" type="0">
4
		</element>
5
		<element name="ADDITIONAL_INFO" text="The figures shown were realized with the Fit 2. Degree Polynom (Zevenbergen &amp; Thorne 1987)." description="Additional information" type="0">
6
		</element>
7
		<element name="EXTENSION_AUTHOR" text="Victor Olaya" description="Extension created by" type="0">
8
		</element>
9
		<element name="HELP_AUTHOR" text="Victor Olaya" description="Help file created by" type="0">
10
		</element>
11
		<element name="USER_NOTES" text="" description="User_notes" type="0">
12
		</element>
13
		<element name="DEM" text="Digital Elevation Model." description="Elevation" type="3">
14
		</element>
15
		<element name="METHOD" text="the method to use may be selected from  the following:&#10;* Fit 2. Degree Polynom (Bauer, Rohdenburg, Bork 1985)&#10;* Fit 2. Degree Polynom (Heerdegen &amp; Beran 1982)&#10;* Fit 2. Degree Polynom (Zevenbergen &amp; Thorne 1987)&#10;* Fit 3. Degree Polynom (Haralick 1983)" description="Method" type="3">
16
		</element>
17
		<element name="OUTPUT_DESCRIPTION" text="" description="Description" type="2">
18
		</element>
19
		<element name="CLASS" text="The cells are divided in 9 classes.The meanign of each of them is shown next:&#10;* 0: Vertical Curvature: concave. Horizontal Curvature: concave.&#10;* 1: Vertical Curvature: concave. Horizontal Curvature: plane.&#10;* 2: Vertical Curvature: concave. Horizontal Curvature: convex&#10;* 3: Vertical Curvature: plane. Horizontal Curvature: concave.&#10;* 4: Vertical Curvature: plane. Horizontal Curvature: plane.&#10;* 5: Vertical Curvature: plane. Horizontal Curvature: convex.&#10;* 6: Vertical Curvature: convex. Horizontal Curvature: concave.&#10;* 7: Vertical Curvature: convex. Horizontal Curvature: plane.&#10;* 8: Vertical Curvature: convex. Horizontal Curvature: convex." description="Classification" type="2">
20
			<image description="" file="CurvaturaClasificacion.jpg">
21
			</image>
22
		</element>
23
		<element name="HORZ" text="A horizontal convex curvature represents an area where the flow tends to disperse while horizontal concave curvature represents an area where the flow tends to concentrate since the flow lines converge." description="Horizontal curvature" type="2">
24
			<image description="" file="CurvaturaHorizontal.jpg">
25
			</image>
26
		</element>
27
		<element name="GLOBAL" text="Mean curvature of surface." description="Curvature" type="2">
28
			<image description="" file="Curvatura.jpg">
29
			</image>
30
		</element>
31
		<element name="VERT" text="Positive values indicate a convex curvature (areas of flow acceleration), while negative values indicate a concave curvature (areas with a tendency to accumulate water)." description="Vertical curvature" type="2">
32
			<image description="" file="CurvaturaVertical.jpg">
33
			</image>
34
		</element>
35
	</help>
36
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
0 37

  
org.gvsig.geoprocess/tags/org.gvsig.geoprocess-2.2.101/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/help/en/es.unex.sextante.vectorTools.sinuosity/sinuosity.xml
1
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
2
	<help>
3
		<element name="DESCRIPTION" text="This algorithm create a new vector layer with more information: length, straight length (euclidean distance between the firts and point final) and sinuosity." description="Description" type="0">
4
		</element>
5
		<element name="ADDITIONAL_INFO" text="" description="Additional information" type="0">
6
		</element>
7
		<element name="EXTENSION_AUTHOR" text="Victor Olaya" description="Extension created by" type="0">
8
		</element>
9
		<element name="HELP_AUTHOR" text="Victor Olaya" description="Help file created by" type="0">
10
		</element>
11
		<element name="USER_NOTES" text="" description="User_notes" type="0">
12
		</element>
13
		<element name="ROUTES" text="input line layer." description="Routes" type="3">
14
		</element>
15
		<element name="OUTPUT_DESCRIPTION" text="" description="Description" type="2">
16
		</element>
17
		<element name="RESULT" text="new vector layer with new fields." description="Sinuosity" type="2">
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff