svn commit: r369712 - in head/graphics/openjump: . files

Wen Heping wen at FreeBSD.org
Wed Oct 1 10:58:44 UTC 2014


Author: wen
Date: Wed Oct  1 10:58:43 2014
New Revision: 369712
URL: https://svnweb.freebsd.org/changeset/ports/369712
QAT: https://qat.redports.org/buildarchive/r369712/

Log:
  - Update to recent version
  - Correct license
  - Improvements of the startup shell script
    (diagnostic 'echo comments' are intentional)
  - Enable displaying memory management in 'About:Information'
  - Move readme.txt to enable showing in the programs 'About:About' dialog
  
  PR:		193430
  Submitted by:	Rainer Hurling<rhurlin at gwdg.de>(maintainer)

Modified:
  head/graphics/openjump/Makefile
  head/graphics/openjump/distinfo
  head/graphics/openjump/files/patch-bin__oj_linux.sh
  head/graphics/openjump/pkg-plist

Modified: head/graphics/openjump/Makefile
==============================================================================
--- head/graphics/openjump/Makefile	Wed Oct  1 10:11:33 2014	(r369711)
+++ head/graphics/openjump/Makefile	Wed Oct  1 10:58:43 2014	(r369712)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	OpenJUMP
-PORTVERSION=	1.6.3
+PORTVERSION=	1.7.1
 CATEGORIES=	graphics java geography
 MASTER_SITES=	SF/jump-pilot/OpenJUMP/${PORTVERSION}
 DISTNAME=	${PORTNAME}-Portable-${PORTVERSION}-r${PLUS_REV}-PLUS
@@ -10,7 +10,7 @@ DISTNAME=	${PORTNAME}-Portable-${PORTVER
 MAINTAINER=	rhurlin at gwdg.de
 COMMENT=	Open source GIS software written in Java
 
-LICENSE=	BSD CLEARTHOUGHT CPL ECW GPLv2 GPLv3 JAIDL JDOM JYTHON LGPL21 LGPL3
+LICENSE=	BSD3CLAUSE CLEARTHOUGHT CPL ECW GPLv2 GPLv3 JAIDL JDOM JYTHON LGPL21 LGPL3
 LICENSE_COMB=	multi
 
 LICENSE_NAME_CLEARTHOUGHT=	Clearthought Software License
@@ -37,6 +37,8 @@ LICENSE_NAME_JYTHON=	The Jython License
 LICENSE_FILE_JYTHON=	${WRKSRC}/licenses/jython_license.txt
 LICENSE_PERMS_JYTHON=	auto-accept
 
+### Desktop Entries ???
+
 TARGET_DIR=	${STAGEDIR}${PREFIX}/${PORTNAME}
 USE_JAVA=	yes
 JAVA_VERSION=	1.6+
@@ -44,7 +46,7 @@ USES=		zip
 NO_BUILD=	yes
 NO_WRKSUBDIR=	yes
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}-r${PLUS_REV}-PLUS
-PLUS_REV=	3576
+PLUS_REV=	4004
 
 do-install:
 	@${ECHO_CMD} "--->  Installing JAR files"
@@ -52,12 +54,17 @@ do-install:
 	${INSTALL_DATA} ${WRKSRC}/lib/*.jar ${TARGET_DIR}/lib
 	${MKDIR} ${TARGET_DIR}/lib/ext
 	@cd ${WRKSRC}/lib/ext && ${COPYTREE_SHARE} . ${TARGET_DIR}/lib/ext
+	${MKDIR} ${TARGET_DIR}/lib/native
+	${INSTALL_DATA}  ${WRKSRC}/lib/native/jecw-0.0.7.jar ${TARGET_DIR}/lib/native
+	${MKDIR} ${TARGET_DIR}/lib/icons
+	@cd ${WRKSRC}/lib/icons && ${COPYTREE_SHARE} . ${TARGET_DIR}/lib/icons
 	@${ECHO_MSG} "--->  Installing startup script"
 	${MKDIR} ${TARGET_DIR}/bin
 	${INSTALL_SCRIPT} ${WRKSRC}/bin/oj_linux.sh ${TARGET_DIR}/bin/openjump
-	${LN} -sf ../${PORTNAME}/bin/openjump ${STAGEDIR}${PREFIX}/bin/openjump
+	${LN} -sf ${PREFIX}/${PORTNAME}/bin/openjump ${STAGEDIR}${PREFIX}/bin/openjump
 	${INSTALL_DATA} ${WRKSRC}/bin/default-plugins.xml ${TARGET_DIR}/bin/
 	${INSTALL_DATA} ${WRKSRC}/bin/log4j.xml ${TARGET_DIR}/bin/
+	${INSTALL_DATA} ${WRKSRC}/readme.txt ${TARGET_DIR}/bin/
 
 OPTIONS_DEFINE=	DOCS
 
@@ -68,7 +75,6 @@ post-install:
 	@${ECHO_MSG} "--->  Installing documentation"
 	${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${WRKSRC}/Changes.txt ${STAGEDIR}${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/readme.txt ${STAGEDIR}${DOCSDIR}
 .else
 	@${ECHO_MSG} "--->  Skipping documentation"
 .endif

Modified: head/graphics/openjump/distinfo
==============================================================================
--- head/graphics/openjump/distinfo	Wed Oct  1 10:11:33 2014	(r369711)
+++ head/graphics/openjump/distinfo	Wed Oct  1 10:58:43 2014	(r369712)
@@ -1,2 +1,2 @@
-SHA256 (OpenJUMP-Portable-1.6.3-r3576-PLUS.zip) = 4ffc7dbe4dc5bea550aa86a0cd7290b4219a3e08410dd6cab237e74adbe75b7b
-SIZE (OpenJUMP-Portable-1.6.3-r3576-PLUS.zip) = 35747909
+SHA256 (OpenJUMP-Portable-1.7.1-r4004-PLUS.zip) = 89234e66144d26d815dd3e20d44a8c67d4e8787c4ff8ccb98975021f3a514f5d
+SIZE (OpenJUMP-Portable-1.7.1-r4004-PLUS.zip) = 42555043

Modified: head/graphics/openjump/files/patch-bin__oj_linux.sh
==============================================================================
--- head/graphics/openjump/files/patch-bin__oj_linux.sh	Wed Oct  1 10:11:33 2014	(r369711)
+++ head/graphics/openjump/files/patch-bin__oj_linux.sh	Wed Oct  1 10:58:43 2014	(r369712)
@@ -1,20 +1,231 @@
---- bin/oj_linux.sh.orig	2012-12-31 17:00:38.000000000 +0100
-+++ bin/oj_linux.sh	2013-04-13 22:28:29.000000000 +0200
-@@ -3,7 +3,7 @@
- ## uncomment and put in the path where oj log, settings should end up
+--- bin/oj_linux.sh.orig	2014-03-16 17:15:30.000000000 +0100
++++ bin/oj_linux.sh	2014-09-07 13:27:15.000000000 +0200
+@@ -4,9 +4,10 @@
  ## if unset defaults to
  ##   JUMP_HOME (oj app folder) if writable or $HOME/.openjump (user home)
--#JUMP_SETTINGS="/tmp/foobar"
-+JAVA_HOME="/usr/local"
+ #JUMP_SETTINGS="/tmp/foobar"
++JUMP_SETTINGS="$HOME/.openjump"
  
  ## uncomment and put the path to your jre here
- #JAVA_HOME="/home/ed/jre1.6.0_21"
-@@ -126,7 +126,7 @@
+-#JAVA_HOME="/home/ed/jre1.6.0_21"
++JAVA_HOME=${JAVA_HOME}
+ 
+ ## uncomment and change your memory configuration here 
+ ## Xms is initial size, Xmx is maximum size
+@@ -43,6 +44,7 @@
+   # extract zipped files in native dir (our way to ship symlinks to desktops)
+   for filepath in $(find "$1/" -name '*.tgz' -o -name '*.tar.gz')
+   do
++    echo "#####  filepath = '$filepath'"
+     file=$(basename "$filepath")
+     folder=$(dirname "$filepath")
+     done=".$file.unzipped"
+@@ -66,6 +68,7 @@
+ 
+ macinstall(){
+   # create app package
++  echo "#####  MACINSTALL"
+   cp -R -a "$1"/bin/OpenJUMP.app/Contents "$1" &&\
+   awk '{sub(/..\/oj_/,"bin/oj_",$0)}1' "$1"/bin/OpenJUMP.app/Contents/Resources/script > "$1"/Contents/Resources/script &&\
+   echo patched oj.app
+@@ -74,12 +77,14 @@
+ }
+ 
+ ## detect home folder
++echo "#####  \$0 = '$0'"
+ if(test -L "$0") then
+   auxlink=`ls -l "$0" | sed 's/^[^>]*-> //g'`
+   JUMP_HOME=`dirname "$auxlink"`/..
+ else 
+   JUMP_HOME=`dirname "$0"`/..
+ fi
++echo "#####  JUMP_HOME = '$JUMP_HOME'"
+ 
+ ## run postinstalls only, if requested
+ case "$1" in
+@@ -95,13 +100,20 @@
+ 
+ ## cd into jump home
+ OLD_DIR=`pwd`
++echo "#####  pwd = '$OLD_DIR'"
+ cd "$JUMP_HOME"
++PWD_DIR=`pwd`
++echo "#####  cd '$JUMP_HOME', pwd = '$PWD_DIR'"
++
+ 
+ ## determine where to place settings, if no path given
++echo "#####  ===== JUMP_SETTINGS = '$JUMP_SETTINGS'"
+ [ -z "$JUMP_SETTINGS" ] && \
+ JUMP_SETTINGS="$JUMP_HOME"; \
+ if [ -d "$JUMP_SETTINGS" ]; then
++  echo "#####  within -d \$JUMP_SETTINGS"
+   if [ ! -w "$JUMP_SETTINGS" ]; then
++    echo "#####  within ! -w \$JUMP_SETTINGS"
+     # try users home dir
+     JUMP_SETTINGS="$HOME/.openjump"
+     # create if missing
+@@ -118,14 +130,19 @@
+ # 1. first in oj_home/jre
+ # 2. in configured java_home
+ # 3. in path
++echo "#####  -----------------------------------------------------------"
++echo "#####  SEARCH JAVA:"
+ if [ -f "$JUMP_HOME/jre/bin/java" ]; then
+   JAVA="$JUMP_HOME/jre/bin/java"
++  echo "#####  JAVA = '$JAVA'"
+ # is there a jre defined by env var?
+ elif [ -n "$JAVA_HOME" ]; then
+   JAVA=$JAVA_HOME/bin/java
++  echo "#####  JAVA = '$JAVA'"
+ # well, let's look what we've got in the path
+ else
+   JAVA=`which java`
++  echo "#####  JAVA = '$JAVA'"
+ fi
+ 
+ # java available
+@@ -134,20 +151,26 @@
+ add the location of java to your PATH environment variable." && ERROR=1 && end
+ 
+ # resolve recursive links to java binary
++echo "#####  ===== Resolve recursive links to java binary: \$1 = '$1'"
+ relPath(){ echo $1 | awk '/^\//{exit 1}'; }
++echo "#####  awk script survived after \$1 test"
+ relPath "$JAVA" && JAVA="$(pwd)/$JAVA"
+-while [ -L "${JAVA}" ]; do
+-  JDIR=$(dirname "$JAVA")
+-  JAVA=$(readlink -n "${JAVA}")
+-  relPath "$JAVA" && JAVA="${JDIR}/${JAVA}"
+-done
++#while [ -L "${JAVA}" ]; do
++#  JDIR=$(dirname "$JAVA")
++#  echo "#####    JDIR = '$JDIR'"
++#  JAVA=$(readlink -n "${JAVA}")
++#  echo "#####    JAVA = '$JAVA'"
++#  relPath "$JAVA" && JAVA="${JDIR}/${JAVA}"
++#done
+ # java executable file?
+ [ ! -x "$JAVA" ] && \
   echo "The found java binary '$JAVA' is no executable file." && ERROR=1 && end
  
  # java version check
--JAVA_VERSION=$("$JAVA" -version 2>&1 | awk -F'"' '/^java version/{print $2}' | awk -F'.' '{print $1"."$2}')
-+JAVA_VERSION=$("$JAVA" -version 2>&1 | awk -F'"' '/^java version/ || /^openjdk version/{print $2}' | awk -F'.' '{print $1"."$2}')
+ JAVA_VERSIONSTRING="$("$JAVA" -version 2>&1)"
+-JAVA_VERSION=$(echo $JAVA_VERSIONSTRING | awk -F'"' '/^java version/{print $2}' | awk -F'.' '{print $1"."$2}')
++echo "#####  JAVA_VERSIONSTRING = '$JAVA_VERSIONSTRING'"
++JAVA_VERSION=$(echo $JAVA_VERSIONSTRING | awk -F'"' '/^java version/ || /^openjdk version/{print $2}' | awk -F'.' '{print $1"."$2}')
++echo "#####  JAVA_VERSION = '$JAVA_VERSION'"
+ JAVA_ARCH=$(echo $JAVA_VERSIONSTRING | grep -q -i 64-bit && echo x64 || echo x86)
  JAVA_NEEDED="1.5"
  if ! awk "BEGIN{if($JAVA_VERSION < $JAVA_NEEDED)exit 1}"; then
-   echo "Your java version '$JAVA_VERSION' is insufficient to run openjump.
+@@ -157,7 +180,11 @@
+ fi
+ 
+ # use previously set or detect RAM size in bytes
+-RAM_SIZE=${RAM_SIZE-$(expr "$(awk '/MemTotal/{print $2}' /proc/meminfo)" \* 1024)}
++#RAM_SIZE=${RAM_SIZE-$(expr "$(awk '/MemTotal/{print $2}' /proc/meminfo)" \* 1024)}
++RAM_SIZE=${RAM_SIZE-$(expr "$(sysctl hw.realmem | awk '/hw.realmem:/{print $2}')" / 1024)}
++echo "#####  -----------------------------------------------------------"
++echo "#####  RAM_SIZE = '$RAM_SIZE'"
++
+ if [ -n "$JAVA_MAXMEM" ]; then
+   echo "max. memory limit defined via JAVA_MAXMEM=$JAVA_MAXMEM"
+ elif ! is_number "$RAM_SIZE"; then
+@@ -175,14 +202,18 @@
+   else
+     MEM_MAX="$MEM_MINUS1GB"
+   fi
++  echo "#####  MEM_MAX = '$MEM_MAX'"
+ 
+   # limit 32bit jre to 3GiB = 3221225472 bytes
++  echo "#####  JAVA_ARCH = '$JAVA_ARCH'"
+   if [ "$JAVA_ARCH" != "x64" ] && [ "$MEM_MAX" -gt "3221225472" ]; then
+     MEM_MAX=3221225472
+   fi
+ 
+-  MEM_MAX_MB=`expr $MEM_MAX / 1024 / 1024`
++  MEM_MAX_MB=`expr $MEM_MAX / 1024`
+   JAVA_MAXMEM="-Xmx${MEM_MAX_MB}M"
++  echo "#####  JAVA_MAXMEM = '$JAVA_MAXMEM'"
++
+   # output info
+   echo limit max. memory to $MEM_MAX_MB MiB
+ fi
+@@ -190,7 +221,7 @@
+ # always print java infos
+ echo "Running -> '${JAVA}'; " $("$JAVA" -version 2>&1|awk 'BEGIN{ORS=""}{print $0"; "}')
+ 
+-JUMP_PROFILE=~/.jump/openjump.profile
++JUMP_PROFILE="$HOME/.openjump/openjump.profile"
+ if [ -f "$JUMP_PROFILE" ]; then
+   source $JUMP_PROFILE
+ fi
+@@ -199,8 +230,13 @@
+ if [ -z "$JUMP_LIB" ]; then
+   JUMP_LIB="./lib"
+ fi
++echo "#####  JUMP_LIB = '$JUMP_LIB'"
++
+ JUMP_NATIVE_DIR="$JUMP_LIB/native"
+ JUMP_PLUGIN_DIR="${JUMP_PLUGIN_DIR:=$JUMP_LIB/ext}"
++echo "#####  -----------------------------------------------------------"
++echo "#####  JUMP_NATIVE_DIR = '$JUMP_NATIVE_DIR'"
++echo "#####  JUMP_PLUGIN_DIR = '$JUMP_PLUGIN_DIR'"
+ 
+ JUMP_PLUGINS=./bin/default-plugins.xml
+ if [ -z "$JUMP_PLUGINS" ] || [ ! -f "$JUMP_PLUGINS" ]; then
+@@ -209,6 +245,7 @@
+     JUMP_PLUGINS="./scripts/default-plugins.xml"
+   fi
+ fi
++echo "#####  JUMP_PLUGINS = '$JUMP_PLUGINS'"
+ 
+ # include every jar/zip in lib and native dir
+ for libfile in "$JUMP_LIB/"*.zip "$JUMP_LIB/"*.jar "$JUMP_NATIVE_DIR/"*.jar
+@@ -217,29 +254,39 @@
+ done
+ CLASSPATH=.:./bin:./conf:$CLASSPATH
+ export CLASSPATH;
++echo "#####  CLASSPATH = '$CLASSPATH'"
+ 
+ ## compile jump opts
+ #
+ JUMP_OPTS="-plug-in-directory $JUMP_PLUGIN_DIR"
++echo "#####  JUMP_OPTS = '$JUMP_OPTS'"
+ if [ -f "$JUMP_PLUGINS" ]; then
+   JUMP_OPTS="$JUMP_OPTS -default-plugins $JUMP_PLUGINS"
++  echo "#####  JUMP_OPTS = '$JUMP_OPTS'"
+ fi
++
+ # workbench-properties.xml is used to manually load plugins (ISA uses this)
+ JUMP_PROPERTIES=./bin/workbench-properties.xml
+ if [ -n "$JUMP_PROPERTIES" ] && [ -f "$JUMP_PROPERTIES" ]; then
+   JUMP_OPTS="$JUMP_OPTS -properties $JUMP_PROPERTIES"
++  echo "#####  JUMP_OPTS = '$JUMP_OPTS'"
+ fi
+ 
+ # compile jre opts, respect already set ones from e.g. mac
+ JAVA_OPTS=""
++echo "#####  JAVA_OPTS = '$JAVA_OPTS'"
+ JAVA_OPTS="$JAVA_OPTS $JAVA_MAXMEM $JAVA_LANG"
++echo "#####  JAVA_OPTS = '$JAVA_OPTS'"
+ JAVA_OPTS="$JAVA_OPTS -Djump.home=."
++echo "#####  JAVA_OPTS = '$JAVA_OPTS'"
+ [ -n "JAVA_SAXDRIVER"    ] && JAVA_OPTS="$JAVA_OPTS -Dorg.xml.sax.driver=$JAVA_SAXDRIVER"
+ [ -n "$JAVA_LOOKANDFEEL" ] && JAVA_OPTS="$JAVA_OPTS -Dswing.defaultlaf=$JAVA_LOOKANDFEEL"
+ JAVA_OPTS="$JAVA_OPTS $JAVA_OPTS_OVERRIDE"
++echo "#####  JAVA_OPTS = '$JAVA_OPTS'"
+ 
+ # in case some additional archives were placed in native dir inbetween
+-extract_libs "$JUMP_NATIVE_DIR"
++echo "#####  -----------------------------------------------------------"
++#extract_libs "$JUMP_NATIVE_DIR"
+ 
+ # allow jre to find native libraries in native dir, lib/ext (backwards compatibility)
+ # NOTE: mac osx DYLD_LIBRARY_PATH is set in oj_macosx.command only
+@@ -265,4 +312,4 @@
+ cd "$OLD_DIR"
+ 
+ ## run end function
+-end
+\ No newline at end of file
++end

Modified: head/graphics/openjump/pkg-plist
==============================================================================
--- head/graphics/openjump/pkg-plist	Wed Oct  1 10:11:33 2014	(r369711)
+++ head/graphics/openjump/pkg-plist	Wed Oct  1 10:58:43 2014	(r369712)
@@ -1,7 +1,8 @@
 OpenJUMP/bin/default-plugins.xml
 OpenJUMP/bin/log4j.xml
 OpenJUMP/bin/openjump
-OpenJUMP/lib/OpenJUMP-1.6.3-r3576-nosrc.jar
+OpenJUMP/bin/readme.txt
+OpenJUMP/lib/OpenJUMP-1.7.1-r4004-nosrc.jar
 OpenJUMP/lib/batik-awt-util-1.6.jar
 OpenJUMP/lib/batik-bridge-1.6.jar
 OpenJUMP/lib/batik-css-1.6.jar
@@ -20,6 +21,12 @@ OpenJUMP/lib/batik-util-1.6.jar
 OpenJUMP/lib/batik-xml-1.6.jar
 OpenJUMP/lib/bsh-2.0b4.jar
 OpenJUMP/lib/buoy-1.8.jar
+OpenJUMP/lib/commons-codec-1.2.jar
+OpenJUMP/lib/commons-compress-1.6-20130810.172126-39.jar
+OpenJUMP/lib/commons-imaging-1.0-20130811.122228-3.jar
+OpenJUMP/lib/commons-io-1.4.jar
+OpenJUMP/lib/commons-lang-2.4.jar
+OpenJUMP/lib/commons-logging-1.0.4.jar
 OpenJUMP/lib/ext/BeanTools/0-Help.bsh
 OpenJUMP/lib/ext/BeanTools/1-HelloWorld.bsh
 OpenJUMP/lib/ext/BeanTools/10-Flatten3DGeometries.bsh
@@ -191,6 +198,7 @@ OpenJUMP/lib/ext/JumpChart.jar
 OpenJUMP/lib/ext/JumpFillPattern.jar
 OpenJUMP/lib/ext/JumpPrinter.jar
 OpenJUMP/lib/ext/PirolCsv.jar
+OpenJUMP/lib/ext/SkyPrinterPlugIn-1.0.0.jar
 OpenJUMP/lib/ext/TableLayout-bin-jdk1.5-2007-04-21.jar
 OpenJUMP/lib/ext/VertexImages/bore_01.wkt
 OpenJUMP/lib/ext/VertexImages/bore_02.wkt
@@ -258,14 +266,25 @@ OpenJUMP/lib/ext/VertexImages/vector_18.
 OpenJUMP/lib/ext/VertexImages/vector_19.wkt
 OpenJUMP/lib/ext/VertexImages/vector_20.wkt
 OpenJUMP/lib/ext/VertexSymbols.jar
-OpenJUMP/lib/ext/aggregation-0.2.7.jar
+OpenJUMP/lib/ext/aggregation-0.2.8.jar
 OpenJUMP/lib/ext/bsheditor4jump-0.2.4.jar
-OpenJUMP/lib/ext/csv-driver-0.6.6.jar
-OpenJUMP/lib/ext/driver-dxf-0.7.8.jar
+OpenJUMP/lib/ext/csv-driver-0.9.0.jar
+OpenJUMP/lib/ext/dbquery.properties
+OpenJUMP/lib/ext/driver-dxf-0.8.0.jar
 OpenJUMP/lib/ext/graph-toolbox-0.1.4.jar
-OpenJUMP/lib/ext/iText-2.1.5.jar
+OpenJUMP/lib/ext/itext-2.1.7.jar
 OpenJUMP/lib/ext/jgrapht-jdk1.5.jar
 OpenJUMP/lib/ext/jump-jgrapht-0.5.jar
+OpenJUMP/lib/ext/jumpdbquery-1.0.0/CONTRIBUTORS.txt
+OpenJUMP/lib/ext/jumpdbquery-1.0.0/COPYING
+OpenJUMP/lib/ext/jumpdbquery-1.0.0/NOTICE.txt
+OpenJUMP/lib/ext/jumpdbquery-1.0.0/README_jumpdbquery.txt
+OpenJUMP/lib/ext/jumpdbquery-1.0.0/README_releases.txt
+OpenJUMP/lib/ext/jumpdbquery-1.0.0/gt2-oracle-spatial-2.3.2.jar
+OpenJUMP/lib/ext/jumpdbquery-1.0.0/jsyntaxpane-1.0.0.jar
+OpenJUMP/lib/ext/jumpdbquery-1.0.0/mysql-connector-java-5.1.27.jar
+OpenJUMP/lib/ext/jumpdbquery-1.0.0/sqlite-jdbc-3.7.2.jar
+OpenJUMP/lib/ext/jumpdbquery.jar
 OpenJUMP/lib/ext/jython/AlignSelected.py
 OpenJUMP/lib/ext/jython/ArcTool.py
 OpenJUMP/lib/ext/jython/CircleTool.py
@@ -297,8 +316,11 @@ OpenJUMP/lib/ext/jython/images/shape_dis
 OpenJUMP/lib/ext/jython/startup.py
 OpenJUMP/lib/ext/kml-driver-0.1.jar
 OpenJUMP/lib/ext/kml/ProjectStringsList.pjl
+OpenJUMP/lib/ext/oj_osm_reader_v1-0-4.jar
 OpenJUMP/lib/ext/ojsextante_binding_apr2013.jar
 OpenJUMP/lib/ext/pbaseClasses.jar
+OpenJUMP/lib/ext/postgis-jdbc-1.3.3.jar
+OpenJUMP/lib/ext/postgis-stubs-1.3.3.jar
 OpenJUMP/lib/ext/readme.txt
 OpenJUMP/lib/ext/sextante/gishur_core.jar
 OpenJUMP/lib/ext/sextante/gishur_x.jar
@@ -857,306 +879,347 @@ OpenJUMP/lib/ext/sextante_help/slope.mod
 OpenJUMP/lib/ext/sextante_help/slopemean.bsh
 OpenJUMP/lib/ext/sextante_help/watershed.model
 OpenJUMP/lib/ext/sextante_help/watershed.model.xml
-OpenJUMP/lib/ext/topology-0.7.0.jar
+OpenJUMP/lib/ext/topology-0.8.1.jar
 OpenJUMP/lib/ext/xbean-2.2.0.jar
-OpenJUMP/lib/jai_codec-1.1.2_01.jar
-OpenJUMP/lib/jai_core-1.1.2_01.jar
+OpenJUMP/lib/icons/oj.ico
+OpenJUMP/lib/icons/oj.png
+OpenJUMP/lib/imageio-ext-arcgrid-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdal-bindings-1.9.2.jar
+OpenJUMP/lib/imageio-ext-gdalarcbinarygrid-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalarcgrid-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalbsb-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdaldoq1-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdaldoq2-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdaldted-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalecw-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalecwjp2-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalehdr-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalenvihdr-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalenvisat-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalerdasimg-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalframework-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalgeotiff-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalidrisi-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdaljpeg-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalkakadujp2-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalmrsid-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalmrsidjp2-1.1.7.jar
+OpenJUMP/lib/imageio-ext-gdalnitf-1.1.7.jar
+OpenJUMP/lib/imageio-ext-geocore-1.1.7.jar
+OpenJUMP/lib/imageio-ext-imagereadmt-1.1.7.jar
+OpenJUMP/lib/imageio-ext-kakadu-1.1.7.jar
+OpenJUMP/lib/imageio-ext-kakadujni-5.2.6.jar
+OpenJUMP/lib/imageio-ext-nitf-1.1.7.jar
+OpenJUMP/lib/imageio-ext-streams-1.1.7.jar
+OpenJUMP/lib/imageio-ext-tiff-1.1.7.jar
+OpenJUMP/lib/imageio-ext-turbojpeg-1.1.7.jar
+OpenJUMP/lib/imageio-ext-utilities-1.1.7.jar
+OpenJUMP/lib/jai_codec-1.1.3.jar
+OpenJUMP/lib/jai_core-1.1.3.jar
+OpenJUMP/lib/jai_imageio-1.1.jar
 OpenJUMP/lib/jama-1.0.2.jar
 OpenJUMP/lib/jdom-1.1.3.jar
 OpenJUMP/lib/jmatharray-20070905.jar
 OpenJUMP/lib/jmathplot-20070905.jar
 OpenJUMP/lib/js-1.5R4.1.jar
-OpenJUMP/lib/jts-1.13.jar
+OpenJUMP/lib/jts-1.14-20140423.jar
 OpenJUMP/lib/jython-2.2.jar
 OpenJUMP/lib/log4j-1.2.16.jar
-OpenJUMP/lib/postgresql-9.2-1002.jdbc4.jar
+OpenJUMP/lib/native/jecw-0.0.7.jar
+OpenJUMP/lib/nitf-bindings-2.7-dev-r1130.jar
+OpenJUMP/lib/postgresql-9.3-1101-jdbc4.jar
+OpenJUMP/lib/turbojpeg-wrapper-1.2.1.1.jar
 OpenJUMP/lib/xercesImpl-2.8.1.jar
 OpenJUMP/lib/xml-apis-1.3.03.jar
 OpenJUMP/lib/xmlParserAPIs-2.0.2.jar
+OpenJUMP/lib/xz-1.3.jar
 bin/openjump
 %%PORTDOCS%%%%DOCSDIR%%/Changes.txt
-%%PORTDOCS%%%%DOCSDIR%%/readme.txt
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
- at dirrm OpenJUMP/lib/ext/sextante_help/en/it.falciano.sextante.vectorRenameField
- at dirrm OpenJUMP/lib/ext/sextante_help/en/it.falciano.sextante.vectorDeleteField
- at dirrm OpenJUMP/lib/ext/sextante_help/en/it.falciano.sextante.vectorAddField
- at dirrm OpenJUMP/lib/ext/sextante_help/en/it.falciano.sextante.polygonize
- at dirrm OpenJUMP/lib/ext/sextante_help/en/general
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vegetationIndices.tvi
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vegetationIndices.ttvi
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vegetationIndices.pviWalther
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vegetationIndices.pviRichardson
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vegetationIndices.pviQi
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vegetationIndices.pviPerry
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vegetationIndices.nrvi
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vegetationIndices.ndvi
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vegetationIndices.ctvi
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorize.vectorizeLines
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorize.vectorize
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorize.rasterToPoints
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorize.contourLines
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.voronoi
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.vectorSpatialCluster
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.vectorMean
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.vectorCluster
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.variableDistanceBuffer
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.transform
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.splitPolylinesAtNodes
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.splitMultipart
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.splitLinesWithPoints
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.snapPoints
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.smoothLines
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.sinuosity
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.simplifyPolygons
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.simplifyLines
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.saveToWKT
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.resolvePolygonHoles
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.removeRepeatedGeometries
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.removeHoles
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.randomVector
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.polylinesToSingleSegments
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.polylinesToPolygons
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.polygonsToPolylines
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.polygonStatisticsFromPoints
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.pointsToLine
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.pointCoordinates
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.placePointsOnLines
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.perturbatePointsLayer
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.minimumEnclosingPolygon
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.merge
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.medialAxis
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.linesToEquispacedPoints
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.intersection
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.gridStatisticsInPolygons
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.graticuleBuilder
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.geometriesToPoints
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.geometricPropertiesLines
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.geometricProperties
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.generateRoutes
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.fixedDistanceBuffer
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.fitNPointsInPolygon
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.extendPointsLayerWithGrids
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.extendLinesLayerWithGrids
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.exportVector
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.distanceTableBuffer
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.dissolveMultiple
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.dissolve
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.difference
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.delaunay
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.countPoints
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.constrainedDelaunay
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.clipByRectangle
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.clip
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.cleanVectorLayer
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.cleanPointsLayer
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.changeLineDirection
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.centroids
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.buffer
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.boundingbox
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.autoincrementValue
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.addEventTheme
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.InPolygonSpatialJoin
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.topology.nodeLines
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.topology.joinAdjacentLines
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.topology.checkLineDirectionCoherence
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.vectorHistogram
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.vectorFieldCorrelation
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.vectorFieldCalculator
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.vectorBasicStats
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.tableFieldCorrelation
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.tableBasicStats
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.normalityTest
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.filterVector
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.createEquivalentNumericalClass
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.regression
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pdfStudent
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pdfNormal
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pdfExponential
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pdfChiSquared
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pdfBinomial
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pca
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.multipleRegression
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.covarianceMatrix
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.universalKriging
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.rasterizeVectorLayer
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.nearestNeighbour
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.linearDecrease
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.kriging
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.idw
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.euclideanDistance
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.directionToClosestPoint
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.profiles.profile
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.profiles.leastCostPath
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.profiles.flowLineProfile
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.profiles.crossSections
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.spatialCorrelation
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.ripleysK
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.quadrat
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.nearestNeighbour
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.medianCenter
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.meanCenter
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.distanceMatrix
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.nonSpatial.calculator
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.nearestNeighbour
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.surfaceSpecificPoints
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.slope
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.realArea
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.protectionIndex
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.hypsometry
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.fillElevationValues
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.elevationReliefIndex
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.curvatures
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.convergence
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.aspect
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.anisotropicCoefficientOfVariation
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.locate.locateAllocate
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.visualExposure
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.visibility
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.solarRadiation
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.los
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.horizonBlockage
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.hillshade
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.vectorizeTrees
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.thinning
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.texture.quantization
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.texture.features
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.rgb2his
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.his2rgb
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.erosionDilation
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.equalize
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.contrastStretching
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.calibrateRegression
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.calibrate
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.watershedsBySize
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.watersheds
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.usped
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.upslopeAreaFromPoint
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.upslopeAreaFromArea
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.topographicIndices
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.strahlerOrder
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.slopeLength
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.meanValueUphill
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.maxValueUphill
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.isocrones
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.heightOverChannelNetwork
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.fillSinks
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.edgeContamination
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.distToChannelNetwork
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.channelNetwork
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.cellBalance
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.cFactorFromNDVI
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.burnStreams
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.accFlow
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gvsigspecific.reproject
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.thresholdBuffer
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.sortRaster
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.rasterBuffer
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.mergeGrids
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.locateExtremeValues
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.kernelDensity
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.invertNoData
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.histogram
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.gridsFromTableAndGrid
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.gridOrientation
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.gridCompletion
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.gridBasicStats
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.gradientLines
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.density
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.cropToValidData
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.correlation
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.closeGapsNN
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.closeGaps
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.clipGrid
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.clipBBoxGrid
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.changeDataType
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.bboxGrid
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.aggregate
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.semivariances
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodVarianceRadius
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodVariance
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodSkewness
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodRange
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodNumberOfClasses
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMinority
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMinValue
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMedian
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMeanValue
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMaxValue
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMajority
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodKurtosis
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodFragmentation
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodDominance
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodDiversity
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodCountLowerThan
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodCountGreaterThan
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodCountEqualTo
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridcountEqualTo
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridVariance
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridSkewness
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridRange
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMinority
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMinValueGrid
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMinValue
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMedian
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMeanValue
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMaxValueGrid
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMaxValue
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMajority
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridKurtosis
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridCountLowerThan
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridCountGreaterThan
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.reclassifyEqualArea
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.reclassifyEqualAmplitude
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.reclassifyDisjoint
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.reclassifyConsecutive
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.reclassify
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.lacunarity
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.fragstatsDiversity
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.fragstatsArea
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.filterClumps
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.crossClassification
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.combineGrids
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.classStatistics
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.aggregationIndex
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.volumeBetweenGrids
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.volume
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.normalize
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.kernelFilter
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.gridFromFunction
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.gridCalculator
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.generateTerrain
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.generateRandomUniform
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.generateRandomNormal
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.generateRandomBernoulli
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.constantGrid
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.supervisedClassificationB
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.supervisedClassification
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.sumOfCostFromAllPoints
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.roc
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.rectToPolar
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.predictiveModels
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.polarToRect
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.owa
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.fuzzify
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.cva
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.costInRoutesAnisotropic
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.costInRoutes
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.cluster
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.ahp
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.accCostCombined
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.accCostAnisotropic
- at dirrm OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.accCost
- at dirrm OpenJUMP/lib/ext/sextante_help/en/de.ifgi.sextante.simulationTools.channels
- at dirrm OpenJUMP/lib/ext/sextante_help/en
- at dirrm OpenJUMP/lib/ext/sextante_help
- at dirrm OpenJUMP/lib/ext/sextante
- at dirrm OpenJUMP/lib/ext/kml
- at dirrm OpenJUMP/lib/ext/jython/images
- at dirrm OpenJUMP/lib/ext/jython
- at dirrm OpenJUMP/lib/ext/VertexImages
- at dirrm OpenJUMP/lib/ext/FillPatterns
- at dirrm OpenJUMP/lib/ext/BeanTools
- at dirrm OpenJUMP/lib/ext
- at dirrm OpenJUMP/lib
- at dirrm OpenJUMP/bin
- at dirrm OpenJUMP
+ at dir OpenJUMP/bin
+ at dir OpenJUMP/lib/ext/BeanTools
+ at dir OpenJUMP/lib/ext/FillPatterns
+ at dir OpenJUMP/lib/ext/VertexImages
+ at dir OpenJUMP/lib/ext/jumpdbquery-1.0.0
+ at dir OpenJUMP/lib/ext/jython/images
+ at dir OpenJUMP/lib/ext/jython
+ at dir OpenJUMP/lib/ext/kml
+ at dir OpenJUMP/lib/ext/sextante
+ at dir OpenJUMP/lib/ext/sextante_help/en/de.ifgi.sextante.simulationTools.channels
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.accCost
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.accCostAnisotropic
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.accCostCombined
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.ahp
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.cluster
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.costInRoutes
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.costInRoutesAnisotropic
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.cva
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.fuzzify
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.owa
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.polarToRect
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.predictiveModels
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.rectToPolar
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.roc
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.sumOfCostFromAllPoints
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.supervisedClassification
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridAnalysis.supervisedClassificationB
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.constantGrid
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.generateRandomBernoulli
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.generateRandomNormal
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.generateRandomUniform
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.generateTerrain
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.gridCalculator
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.gridFromFunction
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.kernelFilter
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.normalize
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.volume
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCalculus.volumeBetweenGrids
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.aggregationIndex
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.classStatistics
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.combineGrids
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.crossClassification
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.filterClumps
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.fragstatsArea
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.fragstatsDiversity
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.lacunarity
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.reclassify
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.reclassifyConsecutive
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.reclassifyDisjoint
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.reclassifyEqualAmplitude
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridCategorical.reclassifyEqualArea
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridCountGreaterThan
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridCountLowerThan
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridKurtosis
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMajority
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMaxValue
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMaxValueGrid
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMeanValue
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMedian
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMinValue
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMinValueGrid
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridMinority
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridRange
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridSkewness
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridVariance
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.multiGridcountEqualTo
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodCountEqualTo
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodCountGreaterThan
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodCountLowerThan
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodDiversity
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodDominance
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodFragmentation
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodKurtosis
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMajority
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMaxValue
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMeanValue
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMedian
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMinValue
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodMinority
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodNumberOfClasses
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodRange
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodSkewness
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodVariance
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.neighborhoodVarianceRadius
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridStatistics.semivariances
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.aggregate
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.bboxGrid
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.changeDataType
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.clipBBoxGrid
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.clipGrid
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.closeGaps
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.closeGapsNN
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.correlation
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.cropToValidData
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.density
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.gradientLines
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.gridBasicStats
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.gridCompletion
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.gridOrientation
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.gridsFromTableAndGrid
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.histogram
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.invertNoData
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.kernelDensity
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.locateExtremeValues
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.mergeGrids
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.rasterBuffer
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.sortRaster
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gridTools.thresholdBuffer
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.gvsigspecific.reproject
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.accFlow
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.burnStreams
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.cFactorFromNDVI
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.cellBalance
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.channelNetwork
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.createHyetogram
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.distToChannelNetwork
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.edgeContamination
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.fillSinks
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.heightOverChannelNetwork
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.isocrones
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.maxValueUphill
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.meanValueUphill
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.slopeLength
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.strahlerOrder
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.topographicIndices
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.upslopeAreaFromArea
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.upslopeAreaFromPoint
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.usped
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.watersheds
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.hydrology.watershedsBySize
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.calibrate
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.calibrateRegression
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.contrastStretching
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.equalize
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.erosionDilation
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.his2rgb
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.rgb2his
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.texture.features
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.texture.quantization
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.thinning
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.imageAnalysis.vectorizeTrees
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.hillshade
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.horizonBlockage
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.los
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.solarRadiation
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.visibility
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.lighting.visualExposure
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.locate.locateAllocate
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.anisotropicCoefficientOfVariation
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.aspect
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.convergence
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.curvatures
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.elevationReliefIndex
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.fillElevationValues
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.hypsometry
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.protectionIndex
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.realArea
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.slope
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.morphometry.surfaceSpecificPoints
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.nearestNeighbour
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.nonSpatial.calculator
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.distanceMatrix
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.meanCenter
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.medianCenter
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.nearestNeighbour
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.quadrat
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.ripleysK
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.pointAnalysis.spatialCorrelation
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.profiles.crossSections
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.profiles.flowLineProfile
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.profiles.leastCostPath
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.profiles.profile
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.directionToClosestPoint
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.euclideanDistance
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.idw
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.kriging
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.linearDecrease
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.nearestNeighbour
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.rasterizeVectorLayer
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.rasterize.universalKriging
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.covarianceMatrix
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.multipleRegression
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pca
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pdfBinomial
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pdfChiSquared
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pdfExponential
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pdfNormal
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.pdfStudent
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.statisticalMethods.regression
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.createEquivalentNumericalClass
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.filterVector
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.normalityTest
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.tableBasicStats
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.tableFieldCorrelation
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.vectorBasicStats
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.vectorFieldCalculator
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.vectorFieldCorrelation
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.tables.vectorHistogram
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.topology.checkLineDirectionCoherence
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.topology.joinAdjacentLines
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.topology.nodeLines
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.InPolygonSpatialJoin
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.addEventTheme
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.autoincrementValue
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.boundingbox
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.buffer
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.centroids
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.changeLineDirection
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.cleanPointsLayer
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.cleanVectorLayer
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.clip
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.clipByRectangle
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.constrainedDelaunay
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.countPoints
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.delaunay
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.difference
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.dissolve
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.dissolveMultiple
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.distanceTableBuffer
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.exportVector
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.extendLinesLayerWithGrids
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.extendPointsLayerWithGrids
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.fitNPointsInPolygon
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.fixedDistanceBuffer
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.generateRoutes
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.geometricProperties
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.geometricPropertiesLines
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.geometriesToPoints
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.graticuleBuilder
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.gridStatisticsInPolygons
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.intersection
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.linesToEquispacedPoints
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.medialAxis
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.merge
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.minimumEnclosingPolygon
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.perturbatePointsLayer
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.placePointsOnLines
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.pointCoordinates
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.pointsToLine
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.polygonStatisticsFromPoints
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.polygonsToPolylines
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.polylinesToPolygons
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.polylinesToSingleSegments
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.randomVector
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.removeHoles
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.removeRepeatedGeometries
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.resolvePolygonHoles
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.saveToWKT
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.simplifyLines
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.simplifyPolygons
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.sinuosity
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.smoothLines
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.snapPoints
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.splitLinesWithPoints
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.splitMultipart
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.splitPolylinesAtNodes
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.transform
+ at dir OpenJUMP/lib/ext/sextante_help/en/es.unex.sextante.vectorTools.variableDistanceBuffer

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-ports-all mailing list