view etl/bin/run.sh @ 9661:9b8ba3b83a15

Importer (s/u-info) vegetation zones: new database column in vegetation_type table for german type name, localized vegetation type names by querying the database instead of translating by resource property, detecting and cancelling the import of a second vegetation zone file for a river, detecting, logging, cancelling in case of wrong column titles, detecting, logging and ignoring lines with missing (color) values, comparing vegetation zone name and class with the database and logging+ignoring in case of inconsistencies, starting the most elevated zone with 0 instead of -1 overflow days
author mschaefer
date Mon, 23 Mar 2020 16:38:12 +0100
parents 4542d23f98bf
children 0a5239a1e46e
line wrap: on
line source
#!/bin/bash

APP=org.dive4elements.river.etl.aft.Sync

DIR=`dirname $0`
DIR=`readlink -f $DIR`

CONF=${1:-../doc/conf.xml}
CONF=$(readlink -f $CONF)
LOG4J_CONF=${2:-log4j.properties}
LOG4J_CONF=$(readlink -f $LOG4J_CONF)

CLASSPATH=
for l in `find "$DIR/lib" -name \*.jar -print`; do
   CLASSPATH=$CLASSPATH:$l
done

export CLASSPATH

exec java \
    -Dlog4j.configuration=file://$LOG4J_CONF \
    -Dconfig.file=$CONF \
    $APP

http://dive4elements.wald.intevation.org