Revision 473

View differences:

org.gvsig.geoprocess/tags/gvSIGv_2_1_0_Build_2218/prepare-workspace.xml
1
<!--
2

  
3
    gvSIG. Desktop Geographic Information System.
4

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

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

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

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

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

  
25
-->
26
<project name="org.gvsig.initial.build" default="prepare-workspace">
27

  
28
	<dirname property="org.gvsig.initial.build.basedir" file="${ant.file.org.gvsig.initial.build}" />
29

  
30
	<property name="workspace.basedir" value="${org.gvsig.initial.build.basedir}/.." />
31
	<property name="build.basedir" value="${workspace.basedir}/org.gvsig.maven.base.build" description="Eclipse workspace location" />
32
	<property name="build.jar.version" value="1.0.8-SNAPSHOT" />
33
	<property name="build.jar.file" value="org.gvsig.maven.base.build-${build.jar.version}.jar" />
34

  
35
	<property name="ant.libs.dir" location="${build.basedir}" description="Additional ant tasks libs folder" />
36

  
37
	<target name="check-maven-base-build-available">
38
		<available file="${user.home}/.m2/repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}" property="maven-base-build-available" />
39
	</target>
40

  
41
	<target name="get-maven-base-build-local" depends="check-maven-base-build-available" if="maven-base-build-available">
42
		<!-- Unzip de build jar file from the maven repository into the workspace root folder -->
43
		<copy todir="${workspace.basedir}" preservelastmodified="false" filtering="false">
44
			<zipfileset src="${user.home}/.m2/repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}">
45
				<patternset>
46
					<exclude name="META-INF/**" />
47
				</patternset>
48
			</zipfileset>
49
		</copy>
50
	</target>
51

  
52
	<target name="get-maven-base-build-remote" depends="check-maven-base-build-available" unless="maven-base-build-available">
53
		<mkdir dir="target" />
54

  
55
		<!-- Download the build jar file -->
56
		<get src="http://devel.gvsig.org/m2repo/j2se/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}" dest="target/${build.jar.file}" verbose="true" />
57

  
58
		<!-- Unzip de build jar file into the workspace root folder -->
59
		<copy todir="${workspace.basedir}" preservelastmodified="false" filtering="false">
60
			<zipfileset src="target/${build.jar.file}">
61
				<patternset>
62
					<exclude name="META-INF/**" />
63
				</patternset>
64
			</zipfileset>
65
		</copy>
66

  
67
	</target>
68
	
69
	<target name="find.depends.natives.file">
70
	    <condition property="depends.natives.file.exists">
71
            <available file="${org.gvsig.initial.build.basedir}/DEPENDS_ON_NATIVE_LIBRARIES"/>
72
	    </condition>	
73
	</target>
74
	
75
	<target name="find.gvsig.platform.properties.file" 
76
			depends="find.depends.natives.file"
77
			if="depends.natives.file.exists">
78
	    <condition property="gvsig.platform.exists">
79
            <available file="${user.home}/.gvsig.platform.properties"/>
80
	    </condition>	
81
	</target>
82
	
83
	<target name="check.gvsig.platform.properties" 
84
			depends="find.gvsig.platform.properties.file">
85
		<fail if="depends.natives.file.exists" unless="gvsig.platform.exists">
86
ERROR!!
87
	
88
You have to define your gvSIG platform properties, 
89
by creating the file: ${user.home}/.gvsig.platform.properties
90
with the following content:
91

  
92
native_platform=linux
93
native_distribution=all
94
native_compiler=gcc4
95
native_arch=i386
96
native_libraryType=dynamic
97
export native_classifier=${native_platform}-${native_distribution}-${native_compiler}-${native_arch}-${native_libraryType}
98

  
99
Replace the fifth initial variables values with the ones appropiate 
100
to your platform.
101
	
102
If you use maven in the command line, you can use the previous file also
103
to define the MAVEN_OPTS environment variable, by adding to your 
104
.bash_rc file something like this:
105

  
106
if [ -f "${HOME}/.gvsig.platform.properties" ]
107
then
108
    . ${HOME}/.gvsig.platform.properties
109
    export MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=64m -Dnative-classifier=${native_classifier}"
110
else
111
    export MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=64m"
112
fi
113

  
114
It will work if you use the bash shell. In any other case or platform, you'll
115
have to define your MAVEN_OPTS environment variable and set the 
116
"native-classifier" parameter directly.
117
		</fail>			
118
	
119
	</target>
120

  
121
	<target name="prepare-workspace" depends="get-maven-base-build-local,get-maven-base-build-remote,check.gvsig.platform.properties">
122

  
123
		<mkdir dir="target" />
124

  
125
		<chmod dir="${build.basedir}/maven/bin" perm="u+x" includes="m2,mvn,mvnDebug" />
126

  
127
		<!-- Copy the maven launchers to the workspace metadata folder -->
128
		<copy todir="${workspace.basedir}/.metadata">
129
			<fileset dir="${build.basedir}/eclipse-launchers">
130
				<exclude name="**/org.eclipse.jdt.core.prefs" />
131
				<exclude name="**/org.eclipse.core.variables.prefs" />
132
			</fileset>
133
		</copy>
134

  
135
		<concat destfile="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs" append="true">
136
			<filelist dir="${build.basedir}/eclipse-launchers/.plugins/org.eclipse.core.runtime/.settings" files="org.eclipse.jdt.core.prefs" />
137
		</concat>
138
		<concat destfile="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.variables.prefs" append="true">
139
			<filelist dir="${build.basedir}/eclipse-launchers/.plugins/org.eclipse.core.runtime/.settings" files="org.eclipse.core.variables.prefs" />
140
		</concat>
141

  
142
		<!-- Configure the eclipse workspace -->
143
		<ant antfile="${build.basedir}/maven-goals.xml" target="mvn-configure-eclipse-workspace" />
144

  
145
		<!-- Configure the gvSIG profile -->
146
		<ant antfile="${build.basedir}/check-gvsig-profile.xml" />
147

  
148
		<property name="user-settings-file-location" value="${user.home}/.m2/settings.xml" />
149

  
150
		<taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask">
151
			<classpath>
152
				<pathelement location="${ant.libs.dir}/com.oopsconsultancy.xmltask-1.16.1.jar" />
153
			</classpath>
154
		</taskdef>
155

  
156
		<xmltask source="${user-settings-file-location}" dest="${user-settings-file-location}">
157
			<copy path="//:settings/:profiles/:profile[:id/text() = 'gvsig-install']/:properties/:gvsig.install.dir/text()" property="current-gvsig-location" />
158
		</xmltask>
159

  
160
		<replace file="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs" token="@GVSIG_HOME@" value="${current-gvsig-location}" />
161
		<replace file="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.variables.prefs" token="@GVSIG_HOME@" value="${current-gvsig-location}" />
162

  
163
		<!-- Compile, install and generate eclipse projects -->
164
		<ant antfile="${build.basedir}/maven-goals.xml" target="mvn-install-and-eclipse-eclipse" />
165

  
166
		<echo>INFORMATION!!!</echo>
167
		<echo>Restart eclipse and then proceed to import the subprojects contained into the main project</echo>
168

  
169
		<!-- TODO: copiar al proyecto de configuración general -->
170
	</target>
171

  
172
	<target name="clean">
173
		<delete dir="target" />
174
	</target>
175
	
176
</project>
0 177

  
org.gvsig.geoprocess/tags/gvSIGv_2_1_0_Build_2218/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.1.0-SNAPSHOT</version>
10
	
11
	<parent>
12
        <groupId>org.gvsig</groupId>
13
        <artifactId>org.gvsig.desktop</artifactId>
14
        <version>2.0.22</version>
15
    </parent>	
16

  
17
	<scm>
18
		<connection>scm:svn:https://devel.gvsig.org/svn/gvsig-geoprocess/org.gvsig.geoprocess/trunk/org.gvsig.geoprocess</connection>
19
		<developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-geoprocess/org.gvsig.geoprocess/trunk/org.gvsig.geoprocess</developerConnection>
20
		<url>https://devel.gvsig.org/redmine/projects/gvsig-geoprocess/repository/show/org.gvsig.geoprocess/trunk/org.gvsig.geoprocess</url>
21
	</scm>
22

  
23
	<repositories>
24
		<repository>
25
			<id>gvsig-public-http-repository</id>
26
			<name>gvSIG maven public HTTP repository</name>
27
			<url>http://devel.gvsig.org/m2repo/j2se</url>
28
			<releases>
29
				<enabled>true</enabled>
30
				<updatePolicy>daily</updatePolicy>
31
				<checksumPolicy>warn</checksumPolicy>
32
			</releases>
33
			<snapshots>
34
				<enabled>true</enabled>
35
				<updatePolicy>daily</updatePolicy>
36
				<checksumPolicy>warn</checksumPolicy>
37
			</snapshots>
38
		</repository>
39
	</repositories>
40

  
41
	<dependencyManagement>
42
		<dependencies>
43
			<dependency>
44
				<groupId>org.gvsig</groupId>
45
				<artifactId>org.gvsig.toolbox.math</artifactId>
46
				<version>1.0.0-SNAPSHOT</version>
47
			</dependency>
48
			<dependency>
49
				<groupId>org.gvsig</groupId>
50
				<artifactId>org.gvsig.toolbox.core</artifactId>
51
				<version>1.0.0-SNAPSHOT</version>
52
			</dependency>
53
			<dependency>
54
				<groupId>org.gvsig</groupId>
55
				<artifactId>org.gvsig.toolbox.gui</artifactId>
56
				<version>1.0.0-SNAPSHOT</version>
57
			</dependency>
58
			<dependency>
59
				<groupId>org.gvsig</groupId>
60
				<artifactId>org.gvsig.toolbox.algorithm</artifactId>
61
				<version>1.0.0-SNAPSHOT</version>
62
			</dependency>
63
			<dependency>
64
				<groupId>org.gvsig</groupId>
65
				<artifactId>org.gvsig.raster.lib.api</artifactId>
66
				<version>2.2.0-SNAPSHOT</version>
67
			</dependency>
68
			<dependency>
69
				<groupId>org.gvsig</groupId>
70
				<artifactId>org.gvsig.raster.fmap</artifactId>
71
				<version>2.2.0-SNAPSHOT</version>
72
			</dependency>
73
			<!-- <dependency>
74
	            <groupId>org.gvsig</groupId>
75
	            <artifactId>org.gvsig.raster.reproject</artifactId>
76
	            <version>2.1.0-SNAPSHOT</version>
77
	        </dependency>
78
	        <dependency>
79
	            <groupId>org.gvsig</groupId>
80
	            <artifactId>org.gvsig.raster.tools.algorithm.swing.api</artifactId>
81
	            <version>2.1.0-SNAPSHOT</version>
82
	        </dependency>
83
	        <dependency>
84
	            <groupId>org.gvsig</groupId>
85
	            <artifactId>org.gvsig.raster.tools.algorithm.swing.impl</artifactId>
86
	            <version>2.1.0-SNAPSHOT</version>
87
	        </dependency>
88
			<dependency>
89
				<groupId>org.gvsig</groupId>
90
				<artifactId>org.gvsig.raster.tools.app.basic</artifactId>
91
				<version>2.1.0-SNAPSHOT</version>
92
			</dependency>
93
			<dependency>
94
          		<groupId>org.gvsig</groupId>
95
            	<artifactId>org.gvsig.raster.principalcomponents.app.principalcomponentsclient</artifactId>
96
           		<version>2.0.0-SNAPSHOT</version>
97
        	</dependency>
98
			<dependency>
99
	            <groupId>org.gvsig</groupId>
100
	            <artifactId>org.gvsig.raster.algorithm</artifactId>
101
	            <version>2.1.0-SNAPSHOT</version>
102
	        </dependency>
103
	        <dependency>
104
	            <groupId>org.gvsig</groupId>
105
	            <artifactId>org.gvsig.raster.reproject.algorithm</artifactId>
106
	            <version>2.1.0-SNAPSHOT</version>
107
	        </dependency>
108
	        <dependency>
109
	            <groupId>org.gvsig</groupId>
110
	            <artifactId>org.gvsig.raster.reproject.app.reprojectclient</artifactId>
111
	            <version>2.1.0-SNAPSHOT</version>
112
	        </dependency>-->
113
			<dependency>
114
				<groupId>org.gvsig</groupId>
115
				<artifactId>org.gvsig.geoprocess.app.mainplugin</artifactId>
116
				<version>2.1.0-SNAPSHOT</version>
117
			</dependency>
118
			<dependency>
119
				<groupId>org.gvsig</groupId>
120
				<artifactId>org.gvsig.geoprocess.lib.api</artifactId>
121
				<version>2.1.0-SNAPSHOT</version>
122
			</dependency>
123
			<dependency>
124
				<groupId>org.gvsig</groupId>
125
				<artifactId>org.gvsig.geoprocess.lib.sextante</artifactId>
126
				<version>2.1.0-SNAPSHOT</version>
127
			</dependency>
128
			<dependency>
129
		    	<groupId>org.gvsig</groupId>
130
   				<artifactId>org.gvsig.geoprocess.algorithm.base</artifactId>
131
            	<version>2.1.0-SNAPSHOT</version>
132
   			</dependency>
133
			<dependency>
134
	            <groupId>org.gvsig</groupId>
135
	            <artifactId>org.gvsig.geoprocess.algorithm.buffer</artifactId>
136
	            <version>2.1.0-SNAPSHOT</version>
137
	        </dependency>
138
	        <dependency>
139
	            <groupId>org.gvsig</groupId>
140
	            <artifactId>org.gvsig.geoprocess.algorithm.clip</artifactId>
141
	            <version>2.1.0-SNAPSHOT</version>
142
	        </dependency>
143
	        <dependency>
144
	            <groupId>org.gvsig</groupId>
145
	            <artifactId>org.gvsig.geoprocess.algorithm.convexhull</artifactId>
146
	            <version>2.1.0-SNAPSHOT</version>
147
	        </dependency>
148
	        <dependency>
149
	            <groupId>org.gvsig</groupId>
150
	            <artifactId>org.gvsig.geoprocess.algorithm.difference</artifactId>
151
	            <version>2.1.0-SNAPSHOT</version>
152
	        </dependency>
153
	        <dependency>
154
	            <groupId>org.gvsig</groupId>
155
	            <artifactId>org.gvsig.geoprocess.algorithm.dissolve</artifactId>
156
	            <version>2.1.0-SNAPSHOT</version>
157
	        </dependency>
158
	        <dependency>
159
	            <groupId>org.gvsig</groupId>
160
	            <artifactId>org.gvsig.geoprocess.algorithm.fusespatially</artifactId>
161
	            <version>2.1.0-SNAPSHOT</version>
162
	        </dependency>
163
	        <dependency>
164
	            <groupId>org.gvsig</groupId>
165
	            <artifactId>org.gvsig.geoprocess.algorithm.intersection</artifactId>
166
	            <version>2.1.0-SNAPSHOT</version>
167
	        </dependency>
168
	        <dependency>
169
	            <groupId>org.gvsig</groupId>
170
	            <artifactId>org.gvsig.geoprocess.algorithm.merge</artifactId>
171
	            <version>2.1.0-SNAPSHOT</version>
172
	        </dependency>
173
	        <dependency>
174
	            <groupId>org.gvsig</groupId>
175
	            <artifactId>org.gvsig.geoprocess.algorithm.reproject</artifactId>
176
	            <version>2.1.0-SNAPSHOT</version>
177
	        </dependency>
178
	        <dependency>
179
	            <groupId>org.gvsig</groupId>
180
	            <artifactId>org.gvsig.geoprocess.algorithm.spatialjoin</artifactId>
181
	            <version>2.1.0-SNAPSHOT</version>
182
	        </dependency>
183
	        <dependency>
184
	            <groupId>org.gvsig</groupId>
185
	            <artifactId>org.gvsig.geoprocess.algorithm.union</artifactId>
186
	            <version>2.1.0-SNAPSHOT</version>
187
	        </dependency>
188
	        <dependency>
189
	            <groupId>org.gvsig</groupId>
190
	            <artifactId>org.gvsig.geoprocess.algorithm.xyshift</artifactId>
191
	            <version>2.1.0-SNAPSHOT</version>
192
	        </dependency>
193
	        <dependency>
194
	            <groupId>org.gvsig</groupId>
195
	            <artifactId>org.gvsig.geoprocess.algorithm.groupby</artifactId>
196
	            <version>2.1.0-SNAPSHOT</version>
197
	        </dependency>
198
            <dependency>
199
	            <groupId>org.gvsig</groupId>
200
	            <artifactId>org.gvsig.geoprocess.algorithm.lateralbuffer</artifactId>
201
	            <version>2.1.0-SNAPSHOT</version>
202
	        </dependency>
203
	        <dependency>
204
	            <groupId>org.gvsig</groupId>
205
	            <artifactId>org.gvsig.geoprocess.algorithm.splitlines</artifactId>
206
	            <version>2.1.0-SNAPSHOT</version>
207
	        </dependency>
208
	        <dependency>
209
            	<groupId>org.japura</groupId>
210
            	<artifactId>org.japura</artifactId>
211
            	<version>1.14.0</version>
212
        	</dependency>
213
		</dependencies>
214
	</dependencyManagement>
215

  
216
	<build>
217
        <plugins>
218
            <plugin>
219
                <groupId>org.apache.maven.plugins</groupId>
220
                <artifactId>maven-release-plugin</artifactId>
221
                <configuration>
222
                    <tagBase>https://devel.gvsig.org/svn/gvsig-geoprocess/org.gvsig.geoprocess/tags/</tagBase>
223
                    <goals>deploy</goals>
224
                </configuration>
225
            </plugin>
226
            
227
        	<plugin>
228
            	<groupId>org.apache.maven.plugins</groupId>
229
            	<artifactId>maven-compiler-plugin</artifactId>
230
            	<version>2.0.2</version>
231
            	<configuration>
232
                	<source>1.6</source>
233
                	<target>1.6</target>
234
                	<encoding>ISO-8859-1</encoding>
235
            	</configuration>
236
        	</plugin>
237
        	
238
        	<plugin>
239
              <groupId>org.codehaus.mojo</groupId>
240
              <artifactId>animal-sniffer-maven-plugin</artifactId>
241
              <executions>
242
                <execution>
243
                    <id>check-java-api</id>
244
                    <phase>test</phase>
245
                    <goals>
246
                        <goal>check</goal>
247
                    </goals>
248
                    <configuration>
249
                        <signature>
250
                            <groupId>org.codehaus.mojo.signature
251
                            </groupId>
252
                            <artifactId>java16</artifactId>
253
                            <version>1.0</version>
254
                        </signature>
255
                    </configuration>
256
                </execution>
257
              </executions>
258
             </plugin>
259
    	  
260
        </plugins>
261
    </build>
262
    
263
	 <modules>
264
		<module>org.gvsig.geoprocess.lib</module>
265
		<module>org.gvsig.geoprocess.app</module>
266
		<module>org.gvsig.geoprocess.algorithm</module>
267
	</modules>
268
</project>
0 269

  
org.gvsig.geoprocess/tags/gvSIGv_2_1_0_Build_2218/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

  
29
Perform the following steps:
30

  
31
1.- Launch the *prepare-workspace.xml* ant build file. 
32
    You can do it by loading the file into the ant view, 
33
    and running the default task, or right-clicking the 
34
    file from the package explorer or the navigator and
35
    select the option: *Run as > Ant build*. 
36
    
37
2.- Restart eclipse.
38

  
39
3.- Import the subprojects of the project you have just checked out.
40

  
41
Those steps are only needed once per workspace.     
42

  
0 43

  
org.gvsig.geoprocess/tags/gvSIGv_2_1_0_Build_2218/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/pom.xml
1
<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/maven-v4_0_0.xsd">
2
	<modelVersion>4.0.0</modelVersion>
3
	<artifactId>org.gvsig.geoprocess.app.mainplugin</artifactId>
4
	<packaging>jar</packaging>
5
	<name>Geoprocess: base support</name>
6
	<description>Geoprocess: base support framework, without geoprocesses</description>
7

  
8
	<parent>
9
		<groupId>org.gvsig</groupId>
10
		<artifactId>org.gvsig.geoprocess.app</artifactId>
11
		<version>2.1.0-SNAPSHOT</version>
12
	</parent>
13

  
14
	<dependencies>
15
		<dependency>
16
			<groupId>org.gvsig</groupId>
17
			<artifactId>org.gvsig.geoprocess.lib.api</artifactId>
18
			<scope>compile</scope>
19
		</dependency>
20
		<dependency>
21
			<groupId>org.gvsig</groupId>
22
			<artifactId>org.gvsig.geoprocess.lib.sextante</artifactId>
23
			<scope>compile</scope>
24
		</dependency>
25
		<dependency>
26
			<groupId>org.gvsig</groupId>
27
			<artifactId>org.gvsig.about.api</artifactId>
28
			<scope>compile</scope>
29
		</dependency>
30
		<dependency>
31
			<groupId>org.gvsig</groupId>
32
			<artifactId>org.gvsig.i18n</artifactId>
33
			<scope>compile</scope>
34
		</dependency>
35
		<dependency>
36
			<groupId>org.gvsig</groupId>
37
			<artifactId>org.gvsig.toolbox.core</artifactId>
38
			<scope>compile</scope>
39
		</dependency>
40
		<dependency>
41
			<groupId>org.gvsig</groupId>
42
			<artifactId>org.gvsig.toolbox.gui</artifactId>
43
			<scope>compile</scope>
44
		</dependency>
45
        <dependency>
46
			<groupId>org.gvsig</groupId>
47
			<artifactId>org.gvsig.toolbox.math</artifactId>
48
			<scope>runtime</scope>
49
		</dependency>
50
		<dependency>
51
			<groupId>org.gvsig</groupId>
52
			<artifactId>org.gvsig.andami</artifactId>
53
			<scope>compile</scope>
54
		</dependency>
55
		<dependency>
56
			<groupId>org.gvsig</groupId>
57
			<artifactId>org.gvsig.app.mainplugin</artifactId>
58
			<scope>compile</scope>
59
		</dependency>
60
		<dependency>
61
			<groupId>org.gvsig</groupId>
62
			<artifactId>org.gvsig.fmap.control</artifactId>
63
			<scope>compile</scope>
64
		</dependency>
65
		<dependency>
66
            <groupId>org.gvsig</groupId>
67
            <artifactId>org.gvsig.fmap.mapcontext.api</artifactId>
68
            <scope>compile</scope>
69
        </dependency>
70
        <dependency>
71
            <groupId>org.gvsig</groupId>
72
            <artifactId>org.gvsig.fmap.mapcontext.impl</artifactId>
73
            <scope>runtime</scope>
74
        </dependency>
75
        <dependency>
76
            <groupId>org.gvsig</groupId>
77
            <artifactId>org.gvsig.fmap.mapcontext.operation</artifactId>
78
            <scope>runtime</scope>
79
        </dependency>
80
		<dependency>
81
            <groupId>org.gvsig</groupId>
82
            <artifactId>org.gvsig.fmap.dal.api</artifactId>
83
            <scope>compile</scope>
84
        </dependency>
85
        <dependency>
86
            <groupId>org.gvsig</groupId>
87
            <artifactId>org.gvsig.fmap.dal.impl</artifactId>
88
            <scope>compile</scope>
89
        </dependency>
90
         <dependency>
91
            <groupId>org.gvsig</groupId>
92
            <artifactId>org.gvsig.fmap.dal.spi</artifactId>
93
            <scope>compile</scope>
94
        </dependency>
95
		<dependency>
96
            <groupId>org.gvsig</groupId>
97
            <artifactId>org.gvsig.fmap.geometry.api</artifactId>
98
            <scope>compile</scope>
99
        </dependency>
100
        <dependency>
101
            <groupId>org.gvsig</groupId>
102
            <artifactId>org.gvsig.fmap.geometry.impl</artifactId>
103
            <scope>runtime</scope>
104
        </dependency>
105
        <dependency>
106
            <groupId>org.gvsig</groupId>
107
            <artifactId>org.gvsig.fmap.geometry.operation</artifactId>
108
            <scope>runtime</scope>
109
        </dependency>
110
		<dependency>
111
			<groupId>org.gvsig</groupId>
112
			<artifactId>org.gvsig.tools.lib</artifactId>
113
			<scope>compile</scope>
114
		</dependency>
115
		<dependency>
116
			<groupId>org.gvsig</groupId>
117
			<artifactId>org.gvsig.metadata.lib.basic.api</artifactId>
118
			<scope>compile</scope>
119
		</dependency>
120
		<dependency>
121
            <groupId>org.gvsig</groupId>
122
            <artifactId>org.gvsig.fmap.dal.file.lib</artifactId>
123
            <scope>compile</scope>
124
        </dependency>
125
		<dependency>
126
			<groupId>org.gvsig</groupId>
127
			<artifactId>org.gvsig.fmap.dal.file.dbf</artifactId>
128
			<scope>compile</scope>
129
		</dependency>
130
		<dependency>
131
            <groupId>org.gvsig</groupId>
132
            <artifactId>org.gvsig.projection.api</artifactId>
133
            <scope>compile</scope>
134
        </dependency>
135
        <dependency>
136
            <groupId>org.gvsig</groupId>
137
            <artifactId>org.gvsig.projection.cresques.impl</artifactId>
138
            <scope>runtime</scope>
139
        </dependency>
140
		<dependency>
141
			<groupId>org.gvsig</groupId>
142
			<artifactId>org.gvsig.app.document.table.app.mainplugin</artifactId>
143
			<scope>compile</scope>
144
		</dependency>
145
		<dependency>
146
			<groupId>org.gvsig</groupId>
147
			<artifactId>org.gvsig.raster.fmap</artifactId>
148
			<scope>compile</scope>
149
		</dependency>
150
		<dependency>
151
			<groupId>org.gvsig</groupId>
152
			<artifactId>org.gvsig.raster.lib.api</artifactId>
153
			<scope>compile</scope>
154
		</dependency>
155
		<dependency>
156
			<groupId>org.gvsig</groupId>
157
			<artifactId>org.gvsig.timesupport.lib.api</artifactId>
158
			<scope>compile</scope>
159
		</dependency>
160
		<dependency>
161
        	<groupId>bsh</groupId>
162
            <artifactId>bsh</artifactId>
163
            <scope>runtime</scope>
164
        </dependency>
165
        <dependency>
166
           <groupId>gov.nist.math</groupId>
167
           <artifactId>jama</artifactId>
168
           <scope>runtime</scope>
169
        </dependency>
170
        <dependency>
171
           <groupId>jfree</groupId>
172
           <artifactId>jcommon</artifactId>
173
           <scope>runtime</scope>
174
        </dependency>
175
        <dependency>
176
           <groupId>org.nfunk</groupId>
177
           <artifactId>jep</artifactId>
178
           <scope>runtime</scope>
179
        </dependency>
180
        <dependency>
181
           <groupId>jfree</groupId>
182
           <artifactId>jfreechart</artifactId>
183
           <scope>runtime</scope>
184
        </dependency>
185
        <dependency>
186
           <groupId>gnu.trove</groupId>
187
           <artifactId>trove</artifactId>
188
           <scope>runtime</scope>
189
        </dependency>
190
        <dependency>
191
           <groupId>net.sf</groupId>
192
           <artifactId>jgraph</artifactId>
193
           <scope>runtime</scope>
194
        </dependency>
195
        <dependency>
196
           <groupId>tablelayout</groupId>
197
           <artifactId>TableLayout</artifactId>
198
           <scope>runtime</scope>
199
        </dependency>
200
        <dependency>
201
           <groupId>org.japura</groupId>
202
           <artifactId>org.japura</artifactId>
203
           <scope>runtime</scope>
204
        </dependency>
205
	</dependencies>
206

  
207
	<properties>
208
		<gvsig.package.info.dependencies>required: org.gvsig.app -ge 2.0.0, required: org.gvsig.raster.tilecache.app -ge 2</gvsig.package.info.dependencies>
209
		<gvsig.package.info.poolURL>http://devel.gvsig.org/download/projects/gvsig-geoprocess/pool</gvsig.package.info.poolURL>
210
		<gvsig.package.info.official>true</gvsig.package.info.official>
211
	</properties>
212
</project>
org.gvsig.geoprocess/tags/gvSIGv_2_1_0_Build_2218/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Wed Feb 06 10:13:34 CET 2013
3
buildNumber=2076
org.gvsig.geoprocess/tags/gvSIGv_2_1_0_Build_2218/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/gvSIGv_2_1_0_Build_2218/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?nea 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?genes y teledetecci?n
72

  
73
Mosaic=Mosaico
74

  
75
MultispectralTransformation=Transformaciones multiespectrales
76

  
77
DecisionTree=?rboles de decisi?n
78

  
79
Classification=Clasificaci?n
80

  
81
Geoprocessing=Geoprocesamiento
82

  
83
Point_name=Nombre del punto
84

  
85
New_point=Nuevo punto
86

  
87
tools=Herramientas
0 88

  
org.gvsig.geoprocess/tags/gvSIGv_2_1_0_Build_2218/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
0 88

  
org.gvsig.geoprocess/tags/gvSIGv_2_1_0_Build_2218/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" />
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="10">
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
		</extension>
143
	</extensions>
144
</plugin-config>
0 145

  
org.gvsig.geoprocess/tags/gvSIGv_2_1_0_Build_2218/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/gvSIGv_2_1_0_Build_2218/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/help/readme.txt
1
This folder contains help files for context help and a couple of example models 
2
with their associated description files.
3

  
4
The content of this folder should be copied to a folder named sextante_help, to
5
be created in the same folder where sextante jar files are installed.
6

  
0 7

  
org.gvsig.geoprocess/tags/gvSIGv_2_1_0_Build_2218/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/gvSIGv_2_1_0_Build_2218/org.gvsig.geoprocess.app/org.gvsig.geoprocess.app.mainplugin/src/main/resources-plugin/help/en/es.unex.sextante.gridTools.invertNoData/invertnodata.xml
1
<?xml version='1.0' encoding='ISO-8859-1' standalone='yes' ?>
2
	<help>
3
		<element name="DESCRIPTION" text="This algorithm inverts a mask for a raster layer. Cells with no data values will have a value of 1, while all the remaining cells will have a no-data value" description="Description" type="0">
4
			<image description="Input layer. No data values show black colour" file="invertir_mascara1.jpg">
5
			</image>
6
			<image description="New layer inverted mask (No data value show in black colour)" file="invertir_mascara2.jpg">
7
			</image>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff