Skip to content
Snippets Groups Projects
Commit 302f1042 authored by User expired's avatar User expired
Browse files

changing parameter usage for osmPti2mmds

parent ba557393
No related branches found
No related tags found
No related merge requests found
Pipeline #
Upcoming version: Upcoming version:
----------------- -----------------
- changing parameter usage for osmPti2mmds (Nikolaus Krismer)
- updating gradle to version 3.1 (Nikolaus Krismer) - updating gradle to version 3.1 (Nikolaus Krismer)
- fixed minor problems with spaces in deploy directory (Nikolaus Krismer) - fixed minor problems with spaces in deploy directory (Nikolaus Krismer)
- changes to match new argument naming in isochrone-tools project (Nikolaus Krismer) - changes to match new argument naming in isochrone-tools project (Nikolaus Krismer)
......
...@@ -140,7 +140,7 @@ function fn_import_dataset_postgis() { ...@@ -140,7 +140,7 @@ function fn_import_dataset_postgis() {
if $AVAILABLE_ISOCHRONE_DATAMODEL && [ ! -f "$DATA_DIR/$SQL_EXPORT_FILE" ]; then if $AVAILABLE_ISOCHRONE_DATAMODEL && [ ! -f "$DATA_DIR/$SQL_EXPORT_FILE" ]; then
fn_echo " - creating datamodel using isochrone-datamodel" fn_echo " - creating datamodel using isochrone-datamodel"
# Create datamodel using isochrone-datamodel project # Create datamodel using isochrone-datamodel project
DB_USERNAME="$PG_DB_USER" DB_PASSWORD="$PG_DB_PASSWORD" "$DEPLOY_DIR/isochrone-datamodel/osmPti2mmds.sh" -d -s -b -l -t${SRID} -c${CITY} >> "$WORKING_DIR/create_datamodel_${CITY}_${SRID}.log" 2>&1 DB_USERNAME="$PG_DB_USER" DB_PASSWORD="$PG_DB_PASSWORD" "$DEPLOY_DIR/isochrone-datamodel/osmPti2mmds.sh" -d -s -b -l -t ${SRID} -c "${CITY}" >> "$WORKING_DIR/create_datamodel_${CITY}_${SRID}.log" 2>&1
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
fn_echo "An error occurred while creating datamodel using isochrone-datamodel. The process will exit now with status $?" "ERROR" fn_echo "An error occurred while creating datamodel using isochrone-datamodel. The process will exit now with status $?" "ERROR"
exit $? exit $?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment