From 206ac43d2ed2f376416297ca0e8ccf417d0d393d Mon Sep 17 00:00:00 2001 From: Nikolaus Krismer <nikolaus.krismer@uibk.ac.at> Date: Thu, 8 Sep 2016 14:25:15 +0200 Subject: [PATCH] added lock/done files. removing deprecated geoserver part (only leaving functionality that is used by isochrone-web project) --- CHANGELOG.md | 1 + bootstrap/activateDatabaseLogging.sh | 8 + bootstrap/config.sh | 8 +- bootstrap/createDatabase.sh | 9 +- bootstrap/importData.sh | 109 +-- bootstrap/prepareEnvironment.sh | 13 +- conf/cityPolygons/bolzano.poly | 14 - conf/cityPolygons/innsbruck.poly | 16 - conf/cityPolygons/italy.poly | 149 ---- conf/cityPolygons/salzburg.poly | 41 - conf/cityPolygons/sanfrancisco.poly | 509 ----------- conf/cityPolygons/trentinoaltoadige.poly | 795 ------------------ conf/geoserver_setup_neo4j_ds.gs | 5 - conf/geoserver_setup_neo4j_ft.gs | 3 - conf/geoserver_setup_neo4j_ft_altoadige.gs | 5 - conf/geoserver_setup_neo4j_ft_bolzano.gs | 5 - conf/geoserver_setup_neo4j_ft_innsbruck.gs | 5 - conf/geoserver_setup_neo4j_ft_italy.gs | 5 - conf/geoserver_setup_neo4j_ft_sanfrancisco.gs | 5 - conf/geoserver_setup_neo4j_ft_washingtondc.gs | 5 - conf/geoserver_setup_postgis_ds.gs | 5 - conf/geoserver_setup_postgis_ft.gs | 3 - conf/geoserver_setup_postgis_ft_altoadige.gs | 6 - conf/geoserver_setup_postgis_ft_bolzano.gs | 6 - conf/geoserver_setup_postgis_ft_innsbruck.gs | 6 - conf/geoserver_setup_postgis_ft_italy.gs | 6 - ...geoserver_setup_postgis_ft_sanfrancisco.gs | 6 - ...geoserver_setup_postgis_ft_washingtondc.gs | 6 - 28 files changed, 38 insertions(+), 1716 deletions(-) delete mode 100644 conf/cityPolygons/bolzano.poly delete mode 100644 conf/cityPolygons/innsbruck.poly delete mode 100644 conf/cityPolygons/italy.poly delete mode 100644 conf/cityPolygons/salzburg.poly delete mode 100644 conf/cityPolygons/sanfrancisco.poly delete mode 100644 conf/cityPolygons/trentinoaltoadige.poly delete mode 100644 conf/geoserver_setup_neo4j_ds.gs delete mode 100644 conf/geoserver_setup_neo4j_ft.gs delete mode 100644 conf/geoserver_setup_neo4j_ft_altoadige.gs delete mode 100644 conf/geoserver_setup_neo4j_ft_bolzano.gs delete mode 100644 conf/geoserver_setup_neo4j_ft_innsbruck.gs delete mode 100644 conf/geoserver_setup_neo4j_ft_italy.gs delete mode 100644 conf/geoserver_setup_neo4j_ft_sanfrancisco.gs delete mode 100644 conf/geoserver_setup_neo4j_ft_washingtondc.gs delete mode 100644 conf/geoserver_setup_postgis_ds.gs delete mode 100644 conf/geoserver_setup_postgis_ft.gs delete mode 100644 conf/geoserver_setup_postgis_ft_altoadige.gs delete mode 100644 conf/geoserver_setup_postgis_ft_bolzano.gs delete mode 100644 conf/geoserver_setup_postgis_ft_innsbruck.gs delete mode 100644 conf/geoserver_setup_postgis_ft_italy.gs delete mode 100644 conf/geoserver_setup_postgis_ft_sanfrancisco.gs delete mode 100644 conf/geoserver_setup_postgis_ft_washingtondc.gs diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d7d395..c23f538 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ Upcoming version: ----------------- + - added lock/done files. removing deprecated geoserver part (only leaving functionality that is used by isochrone-web project) (Nikolaus Krismer) - changing SRID to 4326 (tests showed that especially for MineR(X) this is much faster) (Nikolaus Krismer) - renaming node type property (Nikolaus Krismer) - fixing styles after fixing attribute upper-case issue in project isochrone-web (Nikolaus Krismer) diff --git a/bootstrap/activateDatabaseLogging.sh b/bootstrap/activateDatabaseLogging.sh index b37b901..984b90f 100755 --- a/bootstrap/activateDatabaseLogging.sh +++ b/bootstrap/activateDatabaseLogging.sh @@ -35,6 +35,10 @@ fn_echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" START=$(date +%s) +mkdir -p "$WORKING_DIR" +cd "$WORKING_DIR" +touch "$WORKING_DIR/database_logging_activation.lock" + POSTGRESQL_GLOB_CONF=$(find /var/lib/pgsql/ | grep postgresql.conf) POSTGRESQL_DIR=$(dirname ${POSTGRESQL_GLOB_CONF}) POSTGRESQL_VERSION=$(cat ${POSTGRESQL_DIR}/PG_VERSION) @@ -53,6 +57,10 @@ else fn_echo "Not changing database logging file. No configuration file found!", "WARN" fi +# Set status file (meaning that database logging was turned on)" +rm "$WORKING_DIR/database_logging_activation.lock" +touch "$WORKING_DIR/database_logging_activation.done" + END=$(date +%s) TOTAL=$(( $END - $START )) diff --git a/bootstrap/config.sh b/bootstrap/config.sh index 4ad5bae..df92eca 100755 --- a/bootstrap/config.sh +++ b/bootstrap/config.sh @@ -16,9 +16,9 @@ IMPORT_DATA_SPATIALITE=true # Comma separated list of srids for which datasets will be generated # This is useful when creating multiple datasets (when creating/updating data from scratch) # Note that only the last SRID in the list will be kept in the database, all the others will be overwritten -#TARGET_SRID="3857,4326" -TARGET_SRID="4326" -UPDATE_DATA=false +TARGET_SRID="3857,4326" +#TARGET_SRID="4326" +UPDATE_DATA=true CACHE_DIR_LOCAL="/tmp/vagrant-cache" CACHE_DIR_REMOTE="https://dbis-owncloud.uibk.ac.at/index.php/s/kgjm3CItQJ6P374/download?path=%2F2016&files=" @@ -125,6 +125,8 @@ function fn_download() { local FILE="${1}" local URL="${2}" local ARGS="${3} --continue --no-check-certificate --quiet" + # TODO: Stopped here!! + local CHECK_STATUS="${4}" fn_echo " - downloading ${FILE}" "DEBUG" fn_echo " - from URL: ${URL}" "DEBUG" diff --git a/bootstrap/createDatabase.sh b/bootstrap/createDatabase.sh index d1b4831..2dcecd5 100755 --- a/bootstrap/createDatabase.sh +++ b/bootstrap/createDatabase.sh @@ -38,8 +38,9 @@ fn_echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" START=$(date +%s) -mkdir -p $WORKING_DIR -cd $WORKING_DIR +mkdir -p "$WORKING_DIR" +cd "$WORKING_DIR" +touch "$WORKING_DIR/database_creation.lock" if $AVAILABLE_POSTGRES; then fn_echo "Creating postgresql database \"$PG_DB_NAME\"" @@ -68,6 +69,10 @@ PGPASSWORD="$PG_DB_PASSWORD" ${EXEC_PSQL} -U "$PG_DB_USER" -h localhost -d "$PG_ fi fi +# Set status file (meaning that database creation was successful)" +rm "$WORKING_DIR/database_creation.lock" +touch "$WORKING_DIR/database_creation.done" + END=$(date +%s) TOTAL=$(( $END - $START )) diff --git a/bootstrap/importData.sh b/bootstrap/importData.sh index 9d217db..a3b3377 100755 --- a/bootstrap/importData.sh +++ b/bootstrap/importData.sh @@ -40,17 +40,8 @@ fn_arg2boolean DEPLOY_ANY_DATASET "${4}" "true" # Configuration (tool versions, ...) # ###################################### -CITY_POLYGON_DIR="${SHARED_CONF_DIR}/cityPolygons" #DENSITY="60,120,180,240,300" DENSITY="100,200,300,400,500,600,700,800,900,1000" -OSM_DOWNLOAD_MIRROR="http://download.geofabrik.de" -OSM_FILE_AUSTRIA="europe/austria-latest.osm.pbf" -OSM_FILE_GERMANY="europe/germany-latest.osm.pbf" -OSM_FILE_GREATBRITAIN="europe/great-britain-latest.osm.pbf" -OSM_FILE_ITALY="europe/italy-latest.osm.pbf" -OSM_FILE_US_CALIFORNIA="north-america/us/california-latest.osm.pbf" -OSM_FILE_US_DC="north-america/us/district-of-columbia-latest.osm.pbf" -OSM_KEYS="aerialway,highway,public_transport,railway,route" ############################ # Function definitions # @@ -183,65 +174,10 @@ function fn_import_dataset_postgis() { } function fn_init_geoserver() { - # TODO: Do we really want to import data from OSM, so that it is available in geoserver? - # (we publish data from within isochrone-web to geoserver, but why should we do that with the raw data -> pgRouing comparison or similar?) - - # Needs testing !!! - - if $AVAILABLE_NEO4J_SPATIAL; then - fn_echo "Configuring neo4j data permissions for geoserver" - chown -R $TOMCAT_USER:$TOMCAT_USER $DEPLOY_DIR/neo4j/data/graph.db - fi - - fn_echo "Preparing data from OpenStreetMap to be imported into geoserver" - fn_filter_osm_data "Bolzano" "${OSM_FILE_ITALY}" - fn_filter_osm_data "Innsbruck" "${OSM_FILE_AUSTRIA}" - fn_filter_osm_data "Salzburg" "${OSM_FILE_AUSTRIA}" - fn_filter_osm_data "SanFrancisco" "${OSM_FILE_US_CALIFORNIA}" - fn_filter_osm_data "WashingtonDC" "${OSM_FILE_US_DC}" - if $DEPLOY_ALL_DATASETS; then - fn_filter_osm_data "AltoAdige" "${OSM_FILE_ITALY}" - fn_filter_osm_data "Berlin" "${OSM_FILE_GERMANY}" -# fn_filter_osm_data "GreatBritain" "${OSM_FILE_GREATBRITAIN}" -# fn_filter_osm_data "Italy" "${OSM_FILE_ITALY}" - fi - - # TODO: We need to import the data into the database before issueing to geoserver that there are tables available - fn_echo "Configuring geoserver $GEOSERVER_VERSION using geoserver-shell $GEOSERVER_SHELL_VERSION" sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_ws.gs >> setup_geoserver_workspace.log 2>&1 sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_styles.gs >> setup_geoserver_styles.log 2>&1 cp $SHARED_IMG_DIR/* $DEPLOY_DIR/geoserver/data/styles >> setup_geoserver_styles.log 2>&1 - - if $AVAILABLE_NEO4J_SPATIAL; then - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_neo4j_ds.gs >> setup_geoserver_neo4j.log 2>&1 - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_neo4j_ft_bolzano.gs >> setup_geoserver_neo4j.log 2>&1 - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_neo4j_ft_innsbruck.gs >> setup_geoserver_neo4j.log 2>&1 - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_neo4j_ft_sanfrancisco.gs >> setup_geoserver_neo4j.log 2>&1 - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_neo4j_ft_washingtondc.gs >> setup_geoserver_neo4j.log 2>&1 - if $DEPLOY_ALL_DATASETS; then -# sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_neo4j_ft_italy.gs >> setup_geoserver_neo4j.log 2>&1 - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_neo4j_ft_altoadige.gs >> setup_geoserver_neo4j.log 2>&1 - fi - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_neo4j_ft.gs >> setup_geoserver_neo4j.log 2>&1 - fi - if $AVAILABLE_POSTGIS; then - # copy geoserver_setup_postgis_ds and replace username/password - cp $SHARED_CONF_DIR/geoserver_setup_postgis_ds.gs $WORKING_DIR/geoserver_setup_postgis_ds.gs - sed -i "s/@db_username@/$PG_DB_USER/" $WORKING_DIR/geoserver_setup_postgis_ds.gs - sed -i "s/@db_password@/$PG_DB_PASSWORD/" $WORKING_DIR/geoserver_setup_postgis_ds.gs - - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $WORKING_DIR/geoserver_setup_postgis_ds.gs >> setup_geoserver_postgis.log 2>&1 - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_postgis_ft_bolzano.gs >> setup_geoserver_postgis.log 2>&1 - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_postgis_ft_innsbruck.gs >> setup_geoserver_postgis.log 2>&1 - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_postgis_ft_sanfrancisco.gs >> setup_geoserver_postgis.log 2>&1 - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_postgis_ft_washingtondc.gs >> setup_geoserver_postgis.log 2>&1 - if $DEPLOY_ALL_DATASETS; then -# sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_postgis_ft_italy.gs >> setup_geoserver_postgis.log 2>&1 - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_postgis_ft_altoadige.gs >> setup_geoserver_postgis.log 2>&1 - fi - sh $DEPLOY_DIR/gs-shell/bin/gs-shell --cmdfile $SHARED_CONF_DIR/geoserver_setup_postgis_ft.gs >> setup_geoserver_postgis.log 2>&1 - fi } function fn_import_spatialite() { @@ -273,40 +209,6 @@ function fn_import_spatialite() { fi } -function fn_filter_osm_data() { - local NAME="$1" - local OSM_FILE="$2" - - local CITY=${NAME// /} - CITY=${CITY,,} - local OSM_FILE_FILTERED="${CITY}_filtered.osm" - - if $UPDATE_DATA && [ -f "$DATA_DIR/$OSM_FILE_FILTERED" ]; then - fn_echo " - deleting outdated osm export (forced data update)" - rm -rf "$DATA_DIR/$OSM_FILE_FILTERED" - fi - - if [ ! -f "$DATA_DIR/$OSM_FILE_FILTERED" ]; then - fn_echo " - downloading cached OpenStreetMap file" - fn_download_newer $DOWNLOAD_DIR/$OSM_FILE_FILTERED ${CACHE_DIR_REMOTE}${OSM_FILE_FILTERED} - cp $DOWNLOAD_DIR/$OSM_FILE_FILTERED $DATA_DIR/$OSM_FILE_FILTERED >> /dev/null 2>&1 - fi - - if [ ! -f $DATA_DIR/$OSM_FILE_FILTERED ]; then - fn_echo " - downloading OpenStreetMap file (no cached file found)" - OSM_FILENAME=$DOWNLOAD_DIR/${OSM_FILE##*/} - BOUNDING="${CITY_POLYGON_DIR}/${city}.poly" - - fn_download_newer $OSM_FILENAME $OSM_DOWNLOAD_MIRROR/$OSM_FILE - - if [[ "$BOUNDING" == *.poly ]]; then - fn_echo " - filtering OpenStreetMap file" - $DEPLOY_DIR/osmosis/bin/osmosis --read-pbf file="$OSM_FILENAME" --bounding-polygon file="$BOUNDING_POLYGON" --way-key keyList="$OSM_KEYS" --used-node --write-xml file="$DATA_DIR/$OSM_FILE_FILTERED" >> "filter_osmData_$NAME.log" 2>&1 - fi - fi -} - - ################ # Data import # ################ @@ -318,9 +220,10 @@ if $DEPLOY_ANY_DATASET; then START=$(date +%s) - mkdir -p $DOWNLOAD_DIR - mkdir -p $WORKING_DIR + mkdir -p "$DOWNLOAD_DIR" + mkdir -p "$WORKING_DIR" cd "$WORKING_DIR" + touch "$WORKING_DIR/database_data_import.lock" # Generate synthetic datasets (and densities for them) -> they are always created from scratch (never cached) fn_create_synthetic_networks @@ -345,11 +248,15 @@ if $DEPLOY_ANY_DATASET; then fi done - # After data import we have to initialize geoserver layers (if geoserver is used) + # After data import we have to initialize geoserver layer styles (so geoserver can be used by isochrone-web project) if $AVAILABLE_GEOSERVER; then fn_init_geoserver fi + # Set status file (meaning that database creation was successful)" + rm "$WORKING_DIR/database_data_import.lock" + touch "$WORKING_DIR/database_data_import.done" + END=$(date +%s) TOTAL=$(( $END - $START )) diff --git a/bootstrap/prepareEnvironment.sh b/bootstrap/prepareEnvironment.sh index 9ade5d5..5ef6fb9 100755 --- a/bootstrap/prepareEnvironment.sh +++ b/bootstrap/prepareEnvironment.sh @@ -272,9 +272,10 @@ START=$(date +%s) # Basic preparations # ############################ -mkdir -p $DOWNLOAD_DIR -mkdir -p $WORKING_DIR +mkdir -p "$DOWNLOAD_DIR" +mkdir -p "$WORKING_DIR" cd "$WORKING_DIR" +touch "$WORKING_DIR/environment_preparation.lock" fn_echo "Deleting outdated log files" rm -rf $WORKING_DIR/*.log @@ -309,7 +310,7 @@ sed -i 's/SELINUX=enforcing/SELINUX=permissive/' $SELINUX_CONFIG ############################ if [ ! $REPO_ELGIS == "none" ]; then - # Postgresql 9.4 needs never version of gdal which is not part of epel yet (so we install elgis repo) + # Postgresql 9.4 (and newer) need newer version of gdal which is not part of epel for centos 6 (so we install elgis repo) if [ $POSTGRESQL_SHORT_VERSION \> "93" ]; then fn_echo "Installing elgis repository" fn_download $DOWNLOAD_DIR/elgis-repo.rpm $REPO_ELGIS @@ -779,7 +780,7 @@ fi if $INSTALL_SPATIALITE_ADMIN; then # TODO: Check this (does not seem to work) - # TODO: What to do if there are multiple target_srid defined? + # TODO: What to do if there are multiple target_srid entries defined? fn_echo "Configuring phpLiteAdmin" cp $DEPLOY_DIR/phpliteadmin/phpliteadmin.config.sample.php $DEPLOY_DIR/phpliteadmin/phpliteadmin.config.php sed -i "s/password = 'admin'/password = '${TOMCAT_PASSWORD}'/" $DEPLOY_DIR/phpliteadmin/phpliteadmin.config.php @@ -821,6 +822,10 @@ fn_echo " Services started" # Prevent second provision (done by check at the beginning of this file) touch /var/vagrant_provision +# Set status file (meaning that environment preparation was successful)" +rm "$WORKING_DIR/environment_preparation.lock" +touch "$WORKING_DIR/environment_preparation.done" + END=$(date +%s) TOTAL=$(( $END - $START )) diff --git a/conf/cityPolygons/bolzano.poly b/conf/cityPolygons/bolzano.poly deleted file mode 100644 index c93868c..0000000 --- a/conf/cityPolygons/bolzano.poly +++ /dev/null @@ -1,14 +0,0 @@ -bz -1 - 1.134072E+01 4.651782E+01 - 1.136971E+01 4.651049E+01 - 1.136971E+01 4.651049E+01 - 1.139633E+01 4.649196E+01 - 1.135522E+01 4.647852E+01 - 1.135669E+01 4.644246E+01 - 1.130316E+01 4.644490E+01 - 1.128600E+01 4.647669E+01 - 1.129813E+01 4.650133E+01 - 1.134072E+01 4.651782E+01 -END -END diff --git a/conf/cityPolygons/innsbruck.poly b/conf/cityPolygons/innsbruck.poly deleted file mode 100644 index 7df406c..0000000 --- a/conf/cityPolygons/innsbruck.poly +++ /dev/null @@ -1,16 +0,0 @@ -ibk -1 - 1.137540E+01 4.731485E+01 - 1.141031E+01 4.728958E+01 - 1.145231E+01 4.728275E+01 - 1.146650E+01 4.727352E+01 - 1.146946E+01 4.725727E+01 - 1.142835E+01 4.724703E+01 - 1.141533E+01 4.724803E+01 - 1.138398E+01 4.724823E+01 - 1.134316E+01 4.724462E+01 - 1.131713E+01 4.726028E+01 - 1.132453E+01 4.730282E+01 - 1.137540E+01 4.731485E+01 -END -END diff --git a/conf/cityPolygons/italy.poly b/conf/cityPolygons/italy.poly deleted file mode 100644 index 6f8ad40..0000000 --- a/conf/cityPolygons/italy.poly +++ /dev/null @@ -1,149 +0,0 @@ -it -1 - 1.160037E+01 3.632701E+01 - 1.160037E+01 3.777815E+01 - 1.007460E+01 3.777468E+01 - 7.802627E+00 3.872932E+01 - 7.718453E+00 4.133676E+01 - 9.279434E+00 4.133791E+01 - 9.623821E+00 4.144740E+01 - 9.653921E+00 4.196821E+01 - 9.757779E+00 4.248093E+01 - 9.496039E+00 4.316673E+01 - 9.666807E+00 4.374921E+01 - 8.845272E+00 4.413282E+01 - 8.139041E+00 4.360376E+01 - 7.555371E+00 4.348099E+01 - 7.523377E+00 4.378971E+01 - 7.486001E+00 4.387429E+01 - 7.701953E+00 4.407916E+01 - 7.641609E+00 4.415244E+01 - 7.522312E+00 4.413294E+01 - 7.360449E+00 4.409409E+01 - 7.014330E+00 4.422179E+01 - 6.882662E+00 4.435396E+01 - 6.870348E+00 4.446123E+01 - 6.849277E+00 4.453329E+01 - 6.957594E+00 4.462803E+01 - 6.936906E+00 4.465710E+01 - 7.019138E+00 4.472564E+01 - 6.999752E+00 4.478737E+01 - 7.002685E+00 4.483215E+01 - 6.875123E+00 4.483275E+01 - 6.738810E+00 4.490562E+01 - 6.736434E+00 4.500533E+01 - 6.669292E+00 4.501521E+01 - 6.602696E+00 4.512945E+01 - 7.122265E+00 4.525776E+01 - 7.102324E+00 4.532906E+01 - 7.153530E+00 4.538434E+01 - 6.996102E+00 4.548573E+01 - 6.955831E+00 4.561688E+01 - 6.838424E+00 4.567749E+01 - 6.792211E+00 4.574901E+01 - 6.789752E+00 4.584816E+01 - 7.043395E+00 4.593626E+01 - 7.110707E+00 4.588955E+01 - 7.204120E+00 4.589965E+01 - 7.545928E+00 4.599760E+01 - 7.847052E+00 4.595281E+01 - 7.912890E+00 4.601918E+01 - 8.004438E+00 4.605620E+01 - 8.017964E+00 4.610193E+01 - 8.133988E+00 4.617938E+01 - 8.064078E+00 4.625774E+01 - 8.243327E+00 4.636932E+01 - 8.272856E+00 4.643710E+01 - 8.390432E+00 4.647069E+01 - 8.491392E+00 4.646735E+01 - 8.494594E+00 4.628067E+01 - 8.629014E+00 4.615416E+01 - 8.804125E+00 4.610818E+01 - 8.866161E+00 4.607121E+01 - 8.812198E+00 4.600081E+01 - 8.893600E+00 4.596302E+01 - 8.955798E+00 4.587375E+01 - 9.024258E+00 4.583156E+01 - 9.067453E+00 4.589767E+01 - 8.948115E+00 4.596579E+01 - 9.090405E+00 4.615035E+01 - 9.224630E+00 4.625102E+01 - 9.280059E+00 4.638996E+01 - 9.225123E+00 4.644981E+01 - 9.308527E+00 4.652068E+01 - 9.395607E+00 4.650043E+01 - 9.464132E+00 4.650919E+01 - 9.505389E+00 4.635753E+01 - 9.691049E+00 4.632205E+01 - 9.736860E+00 4.635363E+01 - 9.846943E+00 4.637914E+01 - 9.968267E+00 4.639324E+01 - 1.008771E+01 4.624315E+01 - 1.015317E+01 4.625248E+01 - 1.007867E+01 4.634424E+01 - 1.015705E+01 4.641325E+01 - 1.005448E+01 4.640530E+01 - 1.001656E+01 4.653426E+01 - 1.011844E+01 4.664759E+01 - 1.026808E+01 4.663837E+01 - 1.033211E+01 4.657473E+01 - 1.046421E+01 4.654864E+01 - 1.047995E+01 4.662099E+01 - 1.040176E+01 4.663771E+01 - 1.038707E+01 4.669478E+01 - 1.039920E+01 4.673304E+01 - 1.040715E+01 4.678352E+01 - 1.045785E+01 4.688018E+01 - 1.065839E+01 4.689164E+01 - 1.076408E+01 4.684650E+01 - 1.079387E+01 4.680597E+01 - 1.101901E+01 4.679308E+01 - 1.109767E+01 4.696790E+01 - 1.159466E+01 4.703169E+01 - 1.177489E+01 4.700451E+01 - 1.201894E+01 4.708077E+01 - 1.226901E+01 4.710169E+01 - 1.223553E+01 4.702891E+01 - 1.212162E+01 4.700797E+01 - 1.218859E+01 4.694268E+01 - 1.219173E+01 4.692194E+01 - 1.223433E+01 4.689742E+01 - 1.228126E+01 4.690004E+01 - 1.230792E+01 4.684189E+01 - 1.233012E+01 4.679459E+01 - 1.255889E+01 4.668725E+01 - 1.280293E+01 4.665979E+01 - 1.374748E+01 4.653360E+01 - 1.369611E+01 4.643597E+01 - 1.345064E+01 4.634364E+01 - 1.342064E+01 4.629123E+01 - 1.342309E+01 4.624328E+01 - 1.357374E+01 4.623938E+01 - 1.368365E+01 4.618206E+01 - 1.363780E+01 4.611750E+01 - 1.349524E+01 4.600781E+01 - 1.354426E+01 4.597718E+01 - 1.359604E+01 4.599890E+01 - 1.365786E+01 4.599527E+01 - 1.363279E+01 4.591037E+01 - 1.360357E+01 4.583425E+01 - 1.380819E+01 4.577005E+01 - 1.393259E+01 4.563757E+01 - 1.384723E+01 4.557564E+01 - 1.373051E+01 4.556447E+01 - 1.358998E+01 4.556769E+01 - 1.344560E+01 4.556894E+01 - 1.294387E+01 4.511068E+01 - 1.389081E+01 4.396274E+01 - 1.482375E+01 4.258514E+01 - 1.558512E+01 4.256248E+01 - 1.802457E+01 4.140592E+01 - 1.912499E+01 4.014800E+01 - 1.741399E+01 3.837065E+01 - 1.550718E+01 3.630954E+01 - 1.383638E+01 3.634822E+01 - 1.323388E+01 3.507638E+01 - 1.197558E+01 3.514535E+01 - 1.160037E+01 3.632701E+01 -END -END diff --git a/conf/cityPolygons/salzburg.poly b/conf/cityPolygons/salzburg.poly deleted file mode 100644 index 313ce9e..0000000 --- a/conf/cityPolygons/salzburg.poly +++ /dev/null @@ -1,41 +0,0 @@ -salzburg -1 - 1.3108689E+01 4.7785378E+01 - 1.3095873E+01 4.7772020E+01 - 1.3080163E+01 4.7761736E+01 - 1.3062490E+01 4.7755948E+01 - 1.3044093E+01 4.7755122E+01 - 1.3040166E+01 4.7755948E+01 - 1.3039752E+01 4.7760031E+01 - 1.3040682E+01 4.7774810E+01 - 1.3040166E+01 4.7778169E+01 - 1.2995724E+01 4.7778169E+01 - 1.2994277E+01 4.7776206E+01 - 1.2992933E+01 4.7772537E+01 - 1.2990350E+01 4.7768919E+01 - 1.2984665E+01 4.7767059E+01 - 1.2971436E+01 4.7771684E+01 - 1.2953039E+01 4.7798917E+01 - 1.2940327E+01 4.7811501E+01 - 1.2939810E+01 4.7817598E+01 - 1.2942704E+01 4.7820131E+01 - 1.2951386E+01 4.7822611E+01 - 1.2958000E+01 4.7827314E+01 - 1.2962444E+01 4.7833721E+01 - 1.2970816E+01 4.7843953E+01 - 1.2983115E+01 4.7853669E+01 - 1.2999031E+01 4.7856149E+01 - 1.3018048E+01 4.7844806E+01 - 1.3020942E+01 4.7840646E+01 - 1.3021459E+01 4.7837959E+01 - 1.3023112E+01 4.7835840E+01 - 1.3029107E+01 4.7833721E+01 - 1.3091015E+01 4.7832016E+01 - 1.3106828E+01 4.7822611E+01 - 1.3106622E+01 4.7814033E+01 - 1.3108482E+01 4.7807573E+01 - 1.3112409E+01 4.7803103E+01 - 1.3117990E+01 4.7800390E+01 - 1.3108689E+01 4.7785378E+01 -END -END diff --git a/conf/cityPolygons/sanfrancisco.poly b/conf/cityPolygons/sanfrancisco.poly deleted file mode 100644 index ebd88b6..0000000 --- a/conf/cityPolygons/sanfrancisco.poly +++ /dev/null @@ -1,509 +0,0 @@ -sf -1 - -1.230011E+02 3.777205E+01 - -1.229975E+02 3.777078E+01 - -1.229951E+02 3.776913E+01 - -1.229874E+02 3.776387E+01 - -1.229814E+02 3.775892E+01 - -1.229776E+02 3.775498E+01 - -1.229754E+02 3.775258E+01 - -1.229741E+02 3.774993E+01 - -1.229733E+02 3.774865E+01 - -1.229704E+02 3.774782E+01 - -1.229673E+02 3.774630E+01 - -1.229641E+02 3.774428E+01 - -1.229611E+02 3.774195E+01 - -1.229584E+02 3.773973E+01 - -1.229546E+02 3.773683E+01 - -1.229500E+02 3.773219E+01 - -1.229455E+02 3.772531E+01 - -1.229423E+02 3.772106E+01 - -1.229397E+02 3.771535E+01 - -1.229379E+02 3.770996E+01 - -1.229377E+02 3.770924E+01 - -1.229359E+02 3.770246E+01 - -1.229357E+02 3.769762E+01 - -1.229373E+02 3.769093E+01 - -1.229390E+02 3.768654E+01 - -1.229397E+02 3.768235E+01 - -1.229414E+02 3.767658E+01 - -1.229450E+02 3.766977E+01 - -1.229491E+02 3.766338E+01 - -1.229549E+02 3.765835E+01 - -1.229630E+02 3.765198E+01 - -1.229730E+02 3.764658E+01 - -1.229805E+02 3.764390E+01 - -1.229867E+02 3.764178E+01 - -1.229926E+02 3.764102E+01 - -1.230009E+02 3.763993E+01 - -1.230011E+02 3.763983E+01 - -1.230011E+02 3.764177E+01 - -1.230116E+02 3.764151E+01 - -1.230272E+02 3.764522E+01 - -1.230407E+02 3.765033E+01 - -1.230536E+02 3.765865E+01 - -1.230636E+02 3.766732E+01 - -1.230686E+02 3.767304E+01 - -1.230731E+02 3.768258E+01 - -1.230749E+02 3.769007E+01 - -1.230772E+02 3.769232E+01 - -1.230819E+02 3.769684E+01 - -1.230861E+02 3.770075E+01 - -1.230888E+02 3.770579E+01 - -1.230918E+02 3.771187E+01 - -1.230928E+02 3.771369E+01 - -1.230948E+02 3.771407E+01 - -1.230996E+02 3.771359E+01 - -1.231049E+02 3.771265E+01 - -1.231156E+02 3.771404E+01 - -1.231196E+02 3.771544E+01 - -1.231261E+02 3.771673E+01 - -1.231326E+02 3.771939E+01 - -1.231415E+02 3.772616E+01 - -1.231491E+02 3.773228E+01 - -1.231568E+02 3.773784E+01 - -1.231628E+02 3.774353E+01 - -1.231667E+02 3.774993E+01 - -1.231700E+02 3.775593E+01 - -1.231729E+02 3.776360E+01 - -1.231738E+02 3.777183E+01 - -1.231738E+02 3.777573E+01 - -1.231737E+02 3.777611E+01 - -1.231691E+02 3.779236E+01 - -1.231660E+02 3.779688E+01 - -1.231609E+02 3.780200E+01 - -1.231539E+02 3.780706E+01 - -1.231533E+02 3.780744E+01 - -1.231472E+02 3.781195E+01 - -1.231394E+02 3.781672E+01 - -1.231323E+02 3.781968E+01 - -1.231261E+02 3.782166E+01 - -1.231183E+02 3.782306E+01 - -1.231083E+02 3.782254E+01 - -1.230953E+02 3.782188E+01 - -1.230816E+02 3.781815E+01 - -1.230705E+02 3.781383E+01 - -1.230488E+02 3.779982E+01 - -1.230387E+02 3.778888E+01 - -1.230351E+02 3.778043E+01 - -1.230338E+02 3.777837E+01 - -1.230314E+02 3.777715E+01 - -1.230258E+02 3.777709E+01 - -1.230170E+02 3.777607E+01 - -1.230106E+02 3.777493E+01 - -1.230062E+02 3.777352E+01 - -1.230011E+02 3.777205E+01 -END -1 - -1.224343E+02 3.770813E+01 - -1.224349E+02 3.770813E+01 - -1.224351E+02 3.770813E+01 - -1.224354E+02 3.770813E+01 - -1.224359E+02 3.770823E+01 - -1.224362E+02 3.770823E+01 - -1.224362E+02 3.770823E+01 - -1.224366E+02 3.770823E+01 - -1.224382E+02 3.770823E+01 - -1.224386E+02 3.770823E+01 - -1.224387E+02 3.770823E+01 - -1.224389E+02 3.770825E+01 - -1.224390E+02 3.770826E+01 - -1.224391E+02 3.770827E+01 - -1.224392E+02 3.770828E+01 - -1.224397E+02 3.770833E+01 - -1.224405E+02 3.770834E+01 - -1.224405E+02 3.770828E+01 - -1.224405E+02 3.770822E+01 - -1.224405E+02 3.770823E+01 - -1.224405E+02 3.770823E+01 - -1.224406E+02 3.770825E+01 - -1.224407E+02 3.770828E+01 - -1.224408E+02 3.770830E+01 - -1.224409E+02 3.770833E+01 - -1.224412E+02 3.770832E+01 - -1.224413E+02 3.770831E+01 - -1.224413E+02 3.770831E+01 - -1.224415E+02 3.770828E+01 - -1.224418E+02 3.770826E+01 - -1.224421E+02 3.770823E+01 - -1.224431E+02 3.770826E+01 - -1.224432E+02 3.770828E+01 - -1.224445E+02 3.770833E+01 - -1.224447E+02 3.770831E+01 - -1.224451E+02 3.770827E+01 - -1.224454E+02 3.770823E+01 - -1.224459E+02 3.770823E+01 - -1.224464E+02 3.770823E+01 - -1.224472E+02 3.770824E+01 - -1.224473E+02 3.770823E+01 - -1.224492E+02 3.770822E+01 - -1.224496E+02 3.770822E+01 - -1.224498E+02 3.770821E+01 - -1.224502E+02 3.770820E+01 - -1.224502E+02 3.770820E+01 - -1.224523E+02 3.770824E+01 - -1.224522E+02 3.770813E+01 - -1.224530E+02 3.770818E+01 - -1.224538E+02 3.770822E+01 - -1.224540E+02 3.770823E+01 - -1.224543E+02 3.770823E+01 - -1.224544E+02 3.770823E+01 - -1.224557E+02 3.770823E+01 - -1.224572E+02 3.770823E+01 - -1.224579E+02 3.770824E+01 - -1.224585E+02 3.770823E+01 - -1.224590E+02 3.770823E+01 - -1.224599E+02 3.770823E+01 - -1.224613E+02 3.770823E+01 - -1.224614E+02 3.770823E+01 - -1.224621E+02 3.770823E+01 - -1.224623E+02 3.770823E+01 - -1.224626E+02 3.770823E+01 - -1.224627E+02 3.770823E+01 - -1.224628E+02 3.770823E+01 - -1.224636E+02 3.770833E+01 - -1.224640E+02 3.770824E+01 - -1.224641E+02 3.770823E+01 - -1.224644E+02 3.770823E+01 - -1.224645E+02 3.770823E+01 - -1.224647E+02 3.770821E+01 - -1.224649E+02 3.770819E+01 - -1.224649E+02 3.770819E+01 - -1.224654E+02 3.770813E+01 - -1.224658E+02 3.770813E+01 - -1.224658E+02 3.770813E+01 - -1.224663E+02 3.770813E+01 - -1.224666E+02 3.770817E+01 - -1.224666E+02 3.770817E+01 - -1.224668E+02 3.770819E+01 - -1.224670E+02 3.770821E+01 - -1.224670E+02 3.770821E+01 - -1.224672E+02 3.770823E+01 - -1.224679E+02 3.770823E+01 - -1.224686E+02 3.770823E+01 - -1.224689E+02 3.770823E+01 - -1.224689E+02 3.770823E+01 - -1.224689E+02 3.770823E+01 - -1.224691E+02 3.770823E+01 - -1.224692E+02 3.770823E+01 - -1.224709E+02 3.770823E+01 - -1.224710E+02 3.770825E+01 - -1.224711E+02 3.770826E+01 - -1.224713E+02 3.770830E+01 - -1.224715E+02 3.770833E+01 - -1.224715E+02 3.770833E+01 - -1.224718E+02 3.770833E+01 - -1.224718E+02 3.770833E+01 - -1.224811E+02 3.770823E+01 - -1.224838E+02 3.770833E+01 - -1.224849E+02 3.770833E+01 - -1.224851E+02 3.770828E+01 - -1.224854E+02 3.770816E+01 - -1.224854E+02 3.770815E+01 - -1.224856E+02 3.770815E+01 - -1.224856E+02 3.770815E+01 - -1.224857E+02 3.770809E+01 - -1.224858E+02 3.770812E+01 - -1.224858E+02 3.770812E+01 - -1.224859E+02 3.770815E+01 - -1.224860E+02 3.770823E+01 - -1.224867E+02 3.770823E+01 - -1.224936E+02 3.770823E+01 - -1.224978E+02 3.770813E+01 - -1.224982E+02 3.770813E+01 - -1.224982E+02 3.770813E+01 - -1.225025E+02 3.770813E+01 - -1.225028E+02 3.770813E+01 - -1.225028E+02 3.770813E+01 - -1.225044E+02 3.770813E+01 - -1.225507E+02 3.770733E+01 - -1.225752E+02 3.770672E+01 - -1.225783E+02 3.773399E+01 - -1.225799E+02 3.774808E+01 - -1.225813E+02 3.776020E+01 - -1.225820E+02 3.776405E+01 - -1.225833E+02 3.777127E+01 - -1.225847E+02 3.777916E+01 - -1.225882E+02 3.778936E+01 - -1.226002E+02 3.780248E+01 - -1.226123E+02 3.781522E+01 - -1.225846E+02 3.781523E+01 - -1.225509E+02 3.781533E+01 - -1.225464E+02 3.781523E+01 - -1.225362E+02 3.781530E+01 - -1.225301E+02 3.781543E+01 - -1.225292E+02 3.781513E+01 - -1.225284E+02 3.781524E+01 - -1.225274E+02 3.781495E+01 - -1.225273E+02 3.781565E+01 - -1.225284E+02 3.781744E+01 - -1.225291E+02 3.781883E+01 - -1.225270E+02 3.782084E+01 - -1.225255E+02 3.782105E+01 - -1.225257E+02 3.782155E+01 - -1.225253E+02 3.782225E+01 - -1.225244E+02 3.782236E+01 - -1.225246E+02 3.782296E+01 - -1.225240E+02 3.782386E+01 - -1.225236E+02 3.782466E+01 - -1.225193E+02 3.782499E+01 - -1.225185E+02 3.782529E+01 - -1.225177E+02 3.782520E+01 - -1.225168E+02 3.782461E+01 - -1.225161E+02 3.782521E+01 - -1.225119E+02 3.782434E+01 - -1.225111E+02 3.782444E+01 - -1.225052E+02 3.782288E+01 - -1.225054E+02 3.782208E+01 - -1.225047E+02 3.782169E+01 - -1.225042E+02 3.782099E+01 - -1.225034E+02 3.782120E+01 - -1.225029E+02 3.782090E+01 - -1.225015E+02 3.782171E+01 - -1.225013E+02 3.782121E+01 - -1.224998E+02 3.781972E+01 - -1.224990E+02 3.782023E+01 - -1.224999E+02 3.782182E+01 - -1.224990E+02 3.782233E+01 - -1.224988E+02 3.782233E+01 - -1.224963E+02 3.782236E+01 - -1.224955E+02 3.782247E+01 - -1.224948E+02 3.782278E+01 - -1.224945E+02 3.782349E+01 - -1.224935E+02 3.782391E+01 - -1.224932E+02 3.782472E+01 - -1.224925E+02 3.782493E+01 - -1.224921E+02 3.782543E+01 - -1.224914E+02 3.782585E+01 - -1.224912E+02 3.782655E+01 - -1.224863E+02 3.782642E+01 - -1.224835E+02 3.782696E+01 - -1.224827E+02 3.782586E+01 - -1.224813E+02 3.782618E+01 - -1.224810E+02 3.782610E+01 - -1.224810E+02 3.782584E+01 - -1.224793E+02 3.782555E+01 - -1.224792E+02 3.782558E+01 - -1.224791E+02 3.782589E+01 - -1.224788E+02 3.782667E+01 - -1.224784E+02 3.782808E+01 - -1.224788E+02 3.782886E+01 - -1.224796E+02 3.783051E+01 - -1.224795E+02 3.783042E+01 - -1.224792E+02 3.783087E+01 - -1.224788E+02 3.783116E+01 - -1.224786E+02 3.783117E+01 - -1.224785E+02 3.783118E+01 - -1.224784E+02 3.783096E+01 - -1.224783E+02 3.783122E+01 - -1.224785E+02 3.783121E+01 - -1.224785E+02 3.783126E+01 - -1.224786E+02 3.783130E+01 - -1.224781E+02 3.783246E+01 - -1.224742E+02 3.783336E+01 - -1.224736E+02 3.783193E+01 - -1.224728E+02 3.783201E+01 - -1.224722E+02 3.783211E+01 - -1.224540E+02 3.783903E+01 - -1.224455E+02 3.784243E+01 - -1.224336E+02 3.784691E+01 - -1.224225E+02 3.785111E+01 - -1.224187E+02 3.785249E+01 - -1.224187E+02 3.785250E+01 - -1.224188E+02 3.785342E+01 - -1.224188E+02 3.785350E+01 - -1.224199E+02 3.786042E+01 - -1.224199E+02 3.786058E+01 - -1.224203E+02 3.786320E+01 - -1.224204E+02 3.786343E+01 - -1.224222E+02 3.787444E+01 - -1.224225E+02 3.787643E+01 - -1.224227E+02 3.787813E+01 - -1.224241E+02 3.788463E+01 - -1.224276E+02 3.790402E+01 - -1.224302E+02 3.791842E+01 - -1.224323E+02 3.792982E+01 - -1.224322E+02 3.792977E+01 - -1.224304E+02 3.792830E+01 - -1.224302E+02 3.792818E+01 - -1.224264E+02 3.792520E+01 - -1.224246E+02 3.792374E+01 - -1.224227E+02 3.792222E+01 - -1.224200E+02 3.792013E+01 - -1.224121E+02 3.791385E+01 - -1.224095E+02 3.791176E+01 - -1.224026E+02 3.790627E+01 - -1.223994E+02 3.790372E+01 - -1.223817E+02 3.788995E+01 - -1.223748E+02 3.788452E+01 - -1.223746E+02 3.788436E+01 - -1.223740E+02 3.788388E+01 - -1.223738E+02 3.788372E+01 - -1.223726E+02 3.788032E+01 - -1.223722E+02 3.787933E+01 - -1.223707E+02 3.787493E+01 - -1.223692E+02 3.787083E+01 - -1.223690E+02 3.787012E+01 - -1.223678E+02 3.786673E+01 - -1.223654E+02 3.786053E+01 - -1.223583E+02 3.784193E+01 - -1.223559E+02 3.783573E+01 - -1.223545E+02 3.783202E+01 - -1.223526E+02 3.782699E+01 - -1.223504E+02 3.782091E+01 - -1.223494E+02 3.781825E+01 - -1.223492E+02 3.781773E+01 - -1.223490E+02 3.781721E+01 - -1.223485E+02 3.781597E+01 - -1.223472E+02 3.781225E+01 - -1.223469E+02 3.781143E+01 - -1.223467E+02 3.781103E+01 - -1.223454E+02 3.780895E+01 - -1.223416E+02 3.780271E+01 - -1.223403E+02 3.780063E+01 - -1.223366E+02 3.779512E+01 - -1.223366E+02 3.779503E+01 - -1.223365E+02 3.779485E+01 - -1.223361E+02 3.779424E+01 - -1.223361E+02 3.779424E+01 - -1.223361E+02 3.779423E+01 - -1.223361E+02 3.779422E+01 - -1.223352E+02 3.779277E+01 - -1.223324E+02 3.778840E+01 - -1.223315E+02 3.778694E+01 - -1.223308E+02 3.778579E+01 - -1.223306E+02 3.778547E+01 - -1.223304E+02 3.778512E+01 - -1.223302E+02 3.778477E+01 - -1.223296E+02 3.778391E+01 - -1.223295E+02 3.778376E+01 - -1.223294E+02 3.778362E+01 - -1.223289E+02 3.778272E+01 - -1.223288E+02 3.778261E+01 - -1.223287E+02 3.778250E+01 - -1.223286E+02 3.778235E+01 - -1.223279E+02 3.778120E+01 - -1.223250E+02 3.777656E+01 - -1.223161E+02 3.776264E+01 - -1.223131E+02 3.775800E+01 - -1.223105E+02 3.775383E+01 - -1.223073E+02 3.774867E+01 - -1.223012E+02 3.773883E+01 - -1.223003E+02 3.773743E+01 - -1.222977E+02 3.773320E+01 - -1.222945E+02 3.772803E+01 - -1.222943E+02 3.772775E+01 - -1.222938E+02 3.772691E+01 - -1.222936E+02 3.772663E+01 - -1.222932E+02 3.772613E+01 - -1.222922E+02 3.772463E+01 - -1.222919E+02 3.772413E+01 - -1.222915E+02 3.772347E+01 - -1.222902E+02 3.772149E+01 - -1.222898E+02 3.772083E+01 - -1.222889E+02 3.771939E+01 - -1.222861E+02 3.771507E+01 - -1.222852E+02 3.771363E+01 - -1.222845E+02 3.771255E+01 - -1.222825E+02 3.770931E+01 - -1.222818E+02 3.770823E+01 - -1.222946E+02 3.770823E+01 - -1.223604E+02 3.770833E+01 - -1.223717E+02 3.770833E+01 - -1.223756E+02 3.770837E+01 - -1.223761E+02 3.770836E+01 - -1.223794E+02 3.770841E+01 - -1.223795E+02 3.770841E+01 - -1.223811E+02 3.770843E+01 - -1.223875E+02 3.770833E+01 - -1.223927E+02 3.770833E+01 - -1.223932E+02 3.770828E+01 - -1.223933E+02 3.770827E+01 - -1.223938E+02 3.770823E+01 - -1.223943E+02 3.770827E+01 - -1.223946E+02 3.770830E+01 - -1.223948E+02 3.770832E+01 - -1.223950E+02 3.770833E+01 - -1.223951E+02 3.770834E+01 - -1.223958E+02 3.770833E+01 - -1.223962E+02 3.770833E+01 - -1.224003E+02 3.770833E+01 - -1.224010E+02 3.770833E+01 - -1.224013E+02 3.770833E+01 - -1.224013E+02 3.770833E+01 - -1.224015E+02 3.770833E+01 - -1.224016E+02 3.770831E+01 - -1.224018E+02 3.770827E+01 - -1.224020E+02 3.770823E+01 - -1.224024E+02 3.770833E+01 - -1.224027E+02 3.770833E+01 - -1.224030E+02 3.770833E+01 - -1.224033E+02 3.770833E+01 - -1.224047E+02 3.770833E+01 - -1.224052E+02 3.770827E+01 - -1.224053E+02 3.770826E+01 - -1.224053E+02 3.770826E+01 - -1.224054E+02 3.770825E+01 - -1.224055E+02 3.770824E+01 - -1.224055E+02 3.770824E+01 - -1.224056E+02 3.770823E+01 - -1.224065E+02 3.770832E+01 - -1.224072E+02 3.770823E+01 - -1.224073E+02 3.770823E+01 - -1.224074E+02 3.770823E+01 - -1.224089E+02 3.770826E+01 - -1.224104E+02 3.770828E+01 - -1.224114E+02 3.770829E+01 - -1.224124E+02 3.770830E+01 - -1.224124E+02 3.770830E+01 - -1.224125E+02 3.770830E+01 - -1.224129E+02 3.770831E+01 - -1.224133E+02 3.770831E+01 - -1.224134E+02 3.770831E+01 - -1.224135E+02 3.770830E+01 - -1.224137E+02 3.770827E+01 - -1.224140E+02 3.770825E+01 - -1.224142E+02 3.770823E+01 - -1.224143E+02 3.770823E+01 - -1.224145E+02 3.770823E+01 - -1.224152E+02 3.770823E+01 - -1.224153E+02 3.770824E+01 - -1.224153E+02 3.770824E+01 - -1.224162E+02 3.770833E+01 - -1.224171E+02 3.770833E+01 - -1.224172E+02 3.770833E+01 - -1.224182E+02 3.770833E+01 - -1.224182E+02 3.770833E+01 - -1.224187E+02 3.770828E+01 - -1.224192E+02 3.770823E+01 - -1.224198E+02 3.770823E+01 - -1.224201E+02 3.770823E+01 - -1.224224E+02 3.770823E+01 - -1.224238E+02 3.770823E+01 - -1.224239E+02 3.770824E+01 - -1.224253E+02 3.770830E+01 - -1.224255E+02 3.770830E+01 - -1.224256E+02 3.770832E+01 - -1.224260E+02 3.770833E+01 - -1.224261E+02 3.770834E+01 - -1.224262E+02 3.770834E+01 - -1.224263E+02 3.770835E+01 - -1.224264E+02 3.770835E+01 - -1.224269E+02 3.770838E+01 - -1.224271E+02 3.770838E+01 - -1.224272E+02 3.770839E+01 - -1.224281E+02 3.770843E+01 - -1.224283E+02 3.770841E+01 - -1.224292E+02 3.770833E+01 - -1.224293E+02 3.770832E+01 - -1.224300E+02 3.770828E+01 - -1.224309E+02 3.770823E+01 - -1.224313E+02 3.770823E+01 - -1.224322E+02 3.770823E+01 - -1.224323E+02 3.770823E+01 - -1.224323E+02 3.770823E+01 - -1.224334E+02 3.770823E+01 - -1.224340E+02 3.770813E+01 - -1.224343E+02 3.770813E+01 -END -END diff --git a/conf/cityPolygons/trentinoaltoadige.poly b/conf/cityPolygons/trentinoaltoadige.poly deleted file mode 100644 index 2423365..0000000 --- a/conf/cityPolygons/trentinoaltoadige.poly +++ /dev/null @@ -1,795 +0,0 @@ -taa -1 - 12.2334319999999 47.0852 - 12.2456690000001 47.0711630000001 - 12.2392690000001 47.0684170000001 - 12.2320579999999 47.0624230000001 - 12.219192 47.057235 - 12.2203950000001 47.048935 - 12.2145629999999 47.042389 - 12.212838 47.035793 - 12.210723 47.0336030000001 - 12.195544 47.028733 - 12.1738920000001 47.0242270000001 - 12.1579420000001 47.0233720000001 - 12.1508910000001 47.0255670000001 - 12.129626 47.0150830000001 - 12.1243110000001 47.0074450000001 - 12.12913 47.0004650000001 - 12.1283550000001 46.993091 - 12.132687 46.986539 - 12.1358640000001 46.9856300000001 - 12.1363 46.977769 - 12.1346840000001 46.971504 - 12.1358010000001 46.9631000000001 - 12.1641900000001 46.936512 - 12.158362 46.9254310000001 - 12.154727 46.9210550000001 - 12.1454390000001 46.9152680000001 - 12.154075 46.9132969999999 - 12.1613060000001 46.9100079999999 - 12.1730070000001 46.9101900000001 - 12.1826250000001 46.9091490000001 - 12.190514 46.9068950000001 - 12.1958330000001 46.901646 - 12.1963710000001 46.8996420000001 - 12.21232 46.8793900000001 - 12.2158060000002 46.8771190000001 - 12.2368049999999 46.8876110000001 - 12.2369140000001 46.8905370000001 - 12.2423390000001 46.8911940000001 - 12.262491 46.8896140000001 - 12.2704360000001 46.8884500000001 - 12.273189 46.8871980000001 - 12.2788669999999 46.88189 - 12.277973 46.879928 - 12.290622 46.8606990000001 - 12.289763 46.8590400000001 - 12.2959670000001 46.8469509999999 - 12.3046 46.844116 - 12.3064760000001 46.839706 - 12.3047690000001 46.8344770000001 - 12.2966410000001 46.8283970000001 - 12.2869889999999 46.8166110000001 - 12.286581 46.8129240000001 - 12.2918530000001 46.8052700000001 - 12.2894870000001 46.7992940000001 - 12.2846740000001 46.795707 - 12.2836390000001 46.7868070000001 - 12.2877160000001 46.7839280000001 - 12.2935400000001 46.7848580000001 - 12.3179900000001 46.7844090000001 - 12.347988 46.7787090000001 - 12.3632899999999 46.7607200000001 - 12.3690540000001 46.74635 - 12.3770020000001 46.7304230000001 - 12.377975 46.723483 - 12.382426 46.7180570000001 - 12.3899540000001 46.7137220000001 - 12.398972 46.710018 - 12.4051670000001 46.705228 - 12.4122690000001 46.7012250000001 - 12.4245120000001 46.6998260000001 - 12.4272090000001 46.6950530000001 - 12.4415810000002 46.6884190000001 - 12.478064 46.680464 - 12.459768 46.675053 - 12.435143 46.6692580000001 - 12.4186819999999 46.6539930000001 - 12.407923 46.6454 - 12.403944 46.6438490000001 - 12.392085 46.642487 - 12.3840370000001 46.644593 - 12.380783 46.643794 - 12.379107 46.63955 - 12.3793480000001 46.6375860000001 - 12.3838269999999 46.6329790000001 - 12.3887390000001 46.6305530000001 - 12.390846 46.6283850000001 - 12.3896730000001 46.6254270000001 - 12.3860700000001 46.623788 - 12.3714540000001 46.620872 - 12.361032 46.620468 - 12.334363 46.629664 - 12.3169 46.630862 - 12.31722 46.625026 - 12.3064650000001 46.6201430000001 - 12.2848120000002 46.6189040000001 - 12.27107 46.6219080000001 - 12.267753 46.6273399999999 - 12.2622310000002 46.630009 - 12.245664 46.6249730000001 - 12.2428480000001 46.6171960000001 - 12.21343 46.609837 - 12.2119020000001 46.6087280000001 - 12.211122 46.6061490000001 - 12.2048010000001 46.600161 - 12.1959890000001 46.5957460000001 - 12.1932550000001 46.595435 - 12.1957530000001 46.6213710000001 - 12.1832130000001 46.621896 - 12.17234 46.6349780000001 - 12.16301 46.6376400000001 - 12.1497320000001 46.6349680000001 - 12.1461430000001 46.6349549999999 - 12.112017 46.6538620000001 - 12.108472 46.6590520000001 - 12.092293 46.6655120000001 - 12.0830779999999 46.6683480000002 - 12.0765210000001 46.6753060000001 - 12.0692790000001 46.6760229999999 - 12.06992 46.667267 - 12.0674760000001 46.654112 - 12.0707690000001 46.6416400000001 - 12.065079 46.6225690000001 - 12.063739 46.621525 - 12.0540300000001 46.6188870000001 - 12.0464640000001 46.6088290000001 - 12.0506359999999 46.60033 - 12.0507840000001 46.59463 - 12.0477070000001 46.5856039999999 - 12.0447830000001 46.5828020000001 - 12.037727 46.579641 - 12.0351890000001 46.5776660000001 - 12.0296920000001 46.5689560000001 - 11.999433 46.5337370000001 - 11.9885750000001 46.5461800000001 - 11.9671620000001 46.545559 - 11.9505490000001 46.540112 - 11.94651 46.5302990000001 - 11.9349000000001 46.528779 - 11.9285910000002 46.529787 - 11.9186910000001 46.53337 - 11.9129 46.5338420000001 - 11.9019130000001 46.5303060000001 - 11.8859890000001 46.5236080000001 - 11.876682 46.5229250000001 - 11.849038 46.5176140000002 - 11.8293159999999 46.509785 - 11.8250910000002 46.504965 - 11.816466 46.5012050000001 - 11.8114040000001 46.485755 - 11.8144190000002 46.4788230000001 - 11.818335 46.4774920000001 - 11.824007 46.476939 - 11.8454090000001 46.4765430000001 - 11.8608190000001 46.4746519999999 - 11.8796580000001 46.471177 - 11.883698 46.4671990000001 - 11.8878380000001 46.4654610000001 - 11.889168 46.4586570000001 - 11.890117 46.44363 - 11.889799 46.4428860000001 - 11.8718910000001 46.434104 - 11.8513120000001 46.4350820000001 - 11.84918 46.4299340000001 - 11.839233 46.416124 - 11.844702 46.4108170000001 - 11.8384160000001 46.402766 - 11.833048 46.3880800000001 - 11.832818 46.3805040000001 - 11.836324 46.369014 - 11.8359840000001 46.3670510000001 - 11.8319030000001 46.3678219999999 - 11.8259960000001 46.3723840000001 - 11.8211930000001 46.3775130000001 - 11.8187830000001 46.3769310000001 - 11.816944 46.3754960000001 - 11.815731 46.372673 - 11.8170370000001 46.370103 - 11.815186 46.368641 - 11.80502 46.3658720000001 - 11.792149 46.3669520000001 - 11.7847290000001 46.3655760000001 - 11.780597 46.3634360000001 - 11.775395 46.3591270000001 - 11.78032 46.3528400000001 - 11.791443 46.348913 - 11.802993 46.342841 - 11.8113700000001 46.3326000000001 - 11.8310420000001 46.3273530000001 - 11.8328580000001 46.3260390000002 - 11.83238 46.31427 - 11.8378000000001 46.3090690000001 - 11.8424550000001 46.3072290000001 - 11.837775 46.3035609999999 - 11.8310910000001 46.295105 - 11.8272690000001 46.2858660000001 - 11.839034 46.27124 - 11.8639219999999 46.2722100000001 - 11.886248 46.2797020000001 - 11.8893649999999 46.2734050000001 - 11.8883530000001 46.265308 - 11.8863180000001 46.2633700000001 - 11.8859470000002 46.2616290000001 - 11.8872650000001 46.2590850000001 - 11.892992 46.253522 - 11.895768 46.251821 - 11.9013270000001 46.2545870000001 - 11.91466 46.2528120000001 - 11.9226330000001 46.2487140000001 - 11.9300950000001 46.249713 - 11.92477 46.2428480000001 - 11.919186 46.2398640000001 - 11.9105950000001 46.225307 - 11.9204180000002 46.221715 - 11.9252430000001 46.218063 - 11.927372 46.215309 - 11.928772 46.2099400000001 - 11.9351690000001 46.203121 - 11.940374 46.199707 - 11.963606 46.2005540000001 - 11.9633340000001 46.188906 - 11.959387 46.1851520000001 - 11.9524170000001 46.176134 - 11.9519060000001 46.1711680000001 - 11.929627 46.176697 - 11.930562 46.1717110000001 - 11.9293320000002 46.167467 - 11.9228620000001 46.1631870000001 - 11.9193270000001 46.1561710000001 - 11.9227700000001 46.150238 - 11.9022550000001 46.137518 - 11.906584 46.1353950000001 - 11.8944140000001 46.1220460000001 - 11.8863010000001 46.1186430000001 - 11.880521 46.118627 - 11.849204 46.11367 - 11.8280210000001 46.108307 - 11.820684 46.108861 - 11.817462 46.1070910000001 - 11.8146760000001 46.103168 - 11.7811050000001 46.103599 - 11.776492 46.10502 - 11.774236 46.1075760000001 - 11.7597000000001 46.0964910000001 - 11.7517890000001 46.1060350000001 - 11.749093 46.1052020000001 - 11.7190270000001 46.1042290000001 - 11.7124770000001 46.10002 - 11.7044650000001 46.091398 - 11.696103 46.0953580000001 - 11.6900650000001 46.0958200000001 - 11.686296 46.0944690000001 - 11.6834440000001 46.091143 - 11.6830020000001 46.087832 - 11.6845050000001 46.077181 - 11.688117 46.0686630000001 - 11.693366 46.0631710000001 - 11.7051900000001 46.0557000000001 - 11.7074510000001 46.0468910000001 - 11.7018800000001 46.0454190000001 - 11.6883180000002 46.0450410000001 - 11.684603 46.0450610000001 - 11.6808910000001 46.046777 - 11.667691 46.038694 - 11.667614 46.0362470000001 - 11.6740560000001 46.0303800000001 - 11.677157 46.0294590000001 - 11.6828770000001 46.0293120000001 - 11.6828730000001 46.027592 - 11.6815980000001 46.0264700000001 - 11.670804 46.0189460000001 - 11.6676620000001 46.0179970000002 - 11.672348 46.015294 - 11.691011 45.9897070000001 - 11.6853010000001 45.984972 - 11.6868060000001 45.9701780000001 - 11.6805270000002 45.9686090000001 - 11.674235 45.9652550000001 - 11.6689570000001 45.964739 - 11.656918 45.965596 - 11.6286320000002 45.9615450000001 - 11.6316860000001 45.970276 - 11.62193 45.9724620000001 - 11.610096 45.970321 - 11.5886090000001 45.969903 - 11.5808480000001 46.0016590000001 - 11.578251 46.007418 - 11.5680110000001 46.006647 - 11.5534210000001 46.012671 - 11.5236650000001 46.012549 - 11.5203010000001 46.011589 - 11.518218 46.010086 - 11.512367 46.011553 - 11.511717 46.0129010000001 - 11.4922170000001 46.0094490000001 - 11.4862490000001 46.0043250000001 - 11.4690560000001 45.9984600000001 - 11.4554110000001 45.9857130000001 - 11.4477940000002 45.9818020000001 - 11.4011629999999 45.9810070000001 - 11.394783 45.9815010000001 - 11.3919720000001 45.9827030000001 - 11.3792020000001 45.985152 - 11.3747530000001 45.9844080000001 - 11.3734080000002 45.974076 - 11.3791 45.9572710000001 - 11.384321 45.9519360000001 - 11.3828349999999 45.94336 - 11.368202 45.9430520000001 - 11.3593069999999 45.9445640000001 - 11.3588490000001 45.9299820000001 - 11.357996 45.928867 - 11.359078 45.9261910000001 - 11.346046 45.9218540000001 - 11.351704 45.914875 - 11.35033 45.9104390000001 - 11.3465520000001 45.9100090000001 - 11.325361 45.9183220000001 - 11.3168340000001 45.924349 - 11.3134180000001 45.928914 - 11.314051 45.9307260000001 - 11.3028470000001 45.9255890000001 - 11.3048010000001 45.9191360000001 - 11.303917 45.918922 - 11.284724 45.918377 - 11.2827270000001 45.9194860000001 - 11.276321 45.9205910000001 - 11.2718410000001 45.920015 - 11.2721270000001 45.9178800000001 - 11.2593469999999 45.9215790000001 - 11.2624170000001 45.9173970000001 - 11.2608900000001 45.905152 - 11.2499200000001 45.900079 - 11.2556630000001 45.8921360000001 - 11.256106 45.8849070000001 - 11.2514740000001 45.885392 - 11.247463 45.8873380000001 - 11.235876 45.880559 - 11.2359780000001 45.879028 - 11.2416650000001 45.8764600000001 - 11.2453920000001 45.877852 - 11.2403490000001 45.856883 - 11.227666 45.849904 - 11.222893 45.8498660000001 - 11.219478 45.8448640000001 - 11.219413 45.836584 - 11.220081 45.833625 - 11.2158790000001 45.831601 - 11.2041440000002 45.828003 - 11.19967 45.82509 - 11.1986470000001 45.8221950000001 - 11.192115 45.817648 - 11.189848 45.8144760000001 - 11.1904780000001 45.8057920000001 - 11.1945360000001 45.794754 - 11.1968870000001 45.7911480000001 - 11.203808 45.7842780000001 - 11.199767 45.782499 - 11.1910970000001 45.782519 - 11.1794090000001 45.789019 - 11.17499 45.7879830000001 - 11.180086 45.776123 - 11.181613 45.7666990000001 - 11.1816840000001 45.7638100000001 - 11.1760870000001 45.749995 - 11.178085 45.745954 - 11.179455 45.7389720000001 - 11.174786 45.733069 - 11.1542000000001 45.71923 - 11.146919 45.71786 - 11.139679 45.710232 - 11.136862 45.7004970000001 - 11.1395239999999 45.697761 - 11.1235810000001 45.690011 - 11.1244010000001 45.6947440000001 - 11.122416 45.696464 - 11.115112 45.6976700000001 - 11.1096640000001 45.6958810000001 - 11.1081720000001 45.696642 - 11.102888 45.696879 - 11.101181 45.695938 - 11.0910550000001 45.697051 - 11.066474 45.7094070000001 - 11.0605280000001 45.715108 - 11.0587490000001 45.7185200000001 - 11.0574300000001 45.7193900000001 - 11.053784 45.717469 - 11.042798 45.7071160000001 - 11.028687 45.7056260000001 - 11.0174810000001 45.7066290000001 - 11.0171589999999 45.708781 - 11.0129290000001 45.715793 - 10.9999989999999 45.70851 - 10.9987380000001 45.703695 - 10.998653 45.697928 - 10.988054 45.6903940000001 - 10.97484 45.6844300000001 - 10.969342 45.681034 - 10.9694550000002 45.685612 - 10.9704060000001 45.688355 - 10.9759470000001 45.6967830000001 - 10.973223 45.702723 - 10.9666830000001 45.6938 - 10.963023 45.6865860000001 - 10.9523500000001 45.6854020000001 - 10.947149 45.6801140000001 - 10.94552 45.6749670000002 - 10.943923 45.6739660000001 - 10.93848 45.6743220000001 - 10.918986 45.6846210000001 - 10.9130130000001 45.6892349999999 - 10.9169540000001 45.6944540000001 - 10.919806 45.701456 - 10.8906030000001 45.7159789999999 - 10.882497 45.71818 - 10.8748980000001 45.7183250000001 - 10.87353 45.7166960000001 - 10.84486 45.7195160000001 - 10.844296 45.7215 - 10.845427 45.7257900000001 - 10.8509560000001 45.7366860000001 - 10.856719 45.7432939999999 - 10.859624 45.744774 - 10.8636530000001 45.7445640000001 - 10.8661570000002 45.7620360000001 - 10.8679720000001 45.765157 - 10.876791 45.7710190000001 - 10.881883 45.773072 - 10.88403 45.772943 - 10.8860040000001 45.7755740000001 - 10.8858060000001 45.77914 - 10.883895 45.7812789999999 - 10.8813050000001 45.782289 - 10.8811330000001 45.784264 - 10.8793440000001 45.7856950000001 - 10.877952 45.789181 - 10.8738250000001 45.7894820000001 - 10.875142 45.7964680000001 - 10.876679 45.79747 - 10.8777900000001 45.8008030000001 - 10.877714 45.8041479999999 - 10.8877350000001 45.81095 - 10.888616 45.8125680000001 - 10.8844320000001 45.817893 - 10.858085 45.827992 - 10.8268209999999 45.838617 - 10.807062 45.836078 - 10.7998040000001 45.836962 - 10.792237 45.8343590000001 - 10.782995 45.837331 - 10.7832980000001 45.8393200000001 - 10.7793870000001 45.8434940000001 - 10.773658 45.8438160000001 - 10.764087 45.8408640000001 - 10.7610400000002 45.8384209999999 - 10.757389 45.8309390000001 - 10.7531940000001 45.8351440000001 - 10.7523340000001 45.837484 - 10.746255 45.841357 - 10.7365910000001 45.8436420000001 - 10.7274260000002 45.843291 - 10.7235410000001 45.842112 - 10.7181590000001 45.8377020000001 - 10.7120510000001 45.8369830000001 - 10.707842 45.837415 - 10.707703 45.839132 - 10.7005480000001 45.842583 - 10.6836780000001 45.8335170000001 - 10.6767580000001 45.831382 - 10.6708720000001 45.8330260000001 - 10.6556800000001 45.833548 - 10.6517130000001 45.8195260000001 - 10.6520649999999 45.8133920000001 - 10.649421 45.80858 - 10.6463660000001 45.805048 - 10.6424530000001 45.8028060000001 - 10.6361650000001 45.80759 - 10.615603 45.8065630000001 - 10.602026 45.803923 - 10.598709 45.800651 - 10.5907470000001 45.7990450000001 - 10.5832180000001 45.7951220000001 - 10.5830480000001 45.7927670000001 - 10.5814900000001 45.7898130000002 - 10.564509 45.7850340000001 - 10.5514930000001 45.7851840000001 - 10.5394580000001 45.786445 - 10.533795 45.788983 - 10.531923 45.7967850000001 - 10.5348820000001 45.801542 - 10.53214 45.8053640000001 - 10.5270960000001 45.806534 - 10.544386 45.8166230000001 - 10.5446700000001 45.8185690000001 - 10.5414170000001 45.8213360000001 - 10.529907 45.8274570000002 - 10.5253280000001 45.82805 - 10.5155000000001 45.826912 - 10.5096130000001 45.8245150000001 - 10.503871 45.830657 - 10.503112 45.8343930000001 - 10.50695 45.8441980000001 - 10.504133 45.85698 - 10.503322 45.872066 - 10.49637 45.880388 - 10.4920350000002 45.8832390000001 - 10.491089 45.885529 - 10.4911570000002 45.887998 - 10.4961090000001 45.900719 - 10.499992 45.900405 - 10.502983 45.9012500000001 - 10.507128 45.9040540000001 - 10.5087350000001 45.9062630000001 - 10.511111 45.917986 - 10.509612 45.9244860000001 - 10.508406 45.925893 - 10.4974660000001 45.9303880000001 - 10.4924510000001 45.9339280000001 - 10.4924810000001 45.942869 - 10.4871820000001 45.94373 - 10.485741 45.946014 - 10.484053 45.9528290000001 - 10.48801 45.960415 - 10.4856770000001 45.9715780000001 - 10.465465 45.974855 - 10.4544420000001 45.9774560000001 - 10.4531610000001 45.9805860000001 - 10.4540130000001 45.9908400000001 - 10.4581920000001 46.0094540000001 - 10.4593390000001 46.0113430000001 - 10.465745 46.017935 - 10.4718600000001 46.022001 - 10.4830880000001 46.0221620000002 - 10.4843290000001 46.022766 - 10.4857400000001 46.025516 - 10.487261 46.0304490000001 - 10.48456 46.044692 - 10.4824040000001 46.0508080000001 - 10.4783680000002 46.0522220000001 - 10.4919659999999 46.067726 - 10.5023610000001 46.073237 - 10.5102250000001 46.076142 - 10.5182250000001 46.080988 - 10.525776 46.090558 - 10.536358 46.0982820000001 - 10.5424480000001 46.103938 - 10.5505360000001 46.11829 - 10.5521990000001 46.125948 - 10.549137 46.1401600000002 - 10.546958 46.1427170000001 - 10.5477680000001 46.14585 - 10.5487520000002 46.1469979999999 - 10.555354 46.149671 - 10.5564390000001 46.156308 - 10.558341 46.1605120000001 - 10.5623050000001 46.165434 - 10.566436 46.167742 - 10.5556000000001 46.181182 - 10.542432 46.1895360000001 - 10.5507610000001 46.206431 - 10.5691100000001 46.2210960000001 - 10.5714390000001 46.2241040000001 - 10.57155 46.2280860000001 - 10.576091 46.237825 - 10.5817960000001 46.2405360000001 - 10.5867710000001 46.246239 - 10.5867280000001 46.2488340000001 - 10.5767020000001 46.2765740000001 - 10.5740550000001 46.2774910000001 - 10.5715670000001 46.276976 - 10.5607590000001 46.283943 - 10.565073 46.2897880000001 - 10.580613 46.299719 - 10.579917 46.3028410000001 - 10.576299 46.307259 - 10.572426 46.3082350000001 - 10.5655510000001 46.3145140000001 - 10.564687 46.3218650000001 - 10.5664850000001 46.3245400000001 - 10.5666570000001 46.327238 - 10.5283210000001 46.343127 - 10.52273 46.3445510000001 - 10.5167630000001 46.344127 - 10.5205360000001 46.356655 - 10.5300950000001 46.357818 - 10.534557 46.356642 - 10.548259 46.3674590000001 - 10.5680760000001 46.3788180000001 - 10.5710620000001 46.378023 - 10.5937509999999 46.378049 - 10.5990990000001 46.3782840000001 - 10.6084120000001 46.380185 - 10.614531 46.3888100000001 - 10.622196 46.395883 - 10.630423 46.4017660000001 - 10.6315190000001 46.4034560000001 - 10.62927 46.408573 - 10.6254949999999 46.4101070000001 - 10.6213490000001 46.4150300000001 - 10.6172870000001 46.4296760000001 - 10.6176780000001 46.444542 - 10.62319 46.4489940000001 - 10.6015500000001 46.4695630000001 - 10.5781380000001 46.4742670000001 - 10.5613280000001 46.483483 - 10.5583610000001 46.4863500000001 - 10.555556 46.490834 - 10.5498570000001 46.4931520000001 - 10.5007380000001 46.497659 - 10.4869370000001 46.4956070000001 - 10.485588 46.4945000000001 - 10.477144 46.4964510000001 - 10.470283 46.503447 - 10.45896 46.5114540000001 - 10.454097 46.528274 - 10.4542110000002 46.5329169999999 - 10.45966 46.539691 - 10.462623 46.5415150000001 - 10.4720320000001 46.5430150000001 - 10.472898 46.553768 - 10.476273 46.561364 - 10.476241 46.567536 - 10.487181 46.5962140000001 - 10.487482 46.5993660000001 - 10.4860160000001 46.606498 - 10.49271 46.613912 - 10.4772760000001 46.622926 - 10.465921 46.63292 - 10.4545640000001 46.636967 - 10.4465550000002 46.6414640000001 - 10.4213820000001 46.6400940000001 - 10.4158600000001 46.6387590000001 - 10.403366 46.6384630000001 - 10.4014760000001 46.6393860000001 - 10.398821 46.65712 - 10.3933470000001 46.665974 - 10.392574 46.6733010000002 - 10.3873730000001 46.6823090000001 - 10.419719 46.711411 - 10.41932 46.7199209999999 - 10.4068690000001 46.73232 - 10.40882 46.7384119999999 - 10.4446090000001 46.7535090000001 - 10.4436840000001 46.7560319999999 - 10.444971 46.7632020000001 - 10.443743 46.768731 - 10.4400990000001 46.775922 - 10.434114 46.7820780000001 - 10.43142 46.7894100000001 - 10.446957 46.801712 - 10.448928 46.8023030000001 - 10.4545730000001 46.808475 - 10.4584410000001 46.815834 - 10.4557560000001 46.822204 - 10.461805 46.8263020000001 - 10.4603010000001 46.830573 - 10.4677190000002 46.8386120000001 - 10.4708490000001 46.8579980000001 - 10.4794430000001 46.8601110000001 - 10.5015600000001 46.8488659999999 - 10.5192190000001 46.847409 - 10.549244 46.8508190000001 - 10.5573560000001 46.849 - 10.5496790000001 46.8404050000001 - 10.558124 46.8404760000001 - 10.5642800000001 46.8420190000001 - 10.609609 46.8623010000001 - 10.654846 46.868721 - 10.666957 46.8760030000001 - 10.674574 46.872509 - 10.691631 46.8670070000001 - 10.6971580000001 46.8627200000001 - 10.692784 46.8527220000001 - 10.7034189999999 46.849609 - 10.7161200000001 46.84835 - 10.717349 46.846233 - 10.7213010000002 46.8454010000002 - 10.7400620000001 46.8371050000001 - 10.7544800000001 46.8348740000001 - 10.761489 46.8281760000001 - 10.761983 46.822906 - 10.7595450000001 46.8189040000001 - 10.7499700000001 46.8145190000001 - 10.7449720000001 46.807305 - 10.7379950000001 46.8045680000001 - 10.7329900000001 46.800411 - 10.7360900000001 46.79291 - 10.7571990000001 46.79031 - 10.7705870000001 46.79145 - 10.77979 46.793369 - 10.783813 46.79691 - 10.790915 46.7958140000001 - 10.8114040000002 46.7805640000001 - 10.815857 46.7782329999999 - 10.8514800000001 46.7757120000001 - 10.874689 46.766509 - 10.931681 46.773912 - 10.9848710000001 46.766509 - 10.9990200000001 46.7691690000001 - 11.009279 46.7652100000001 - 11.0250800000001 46.7702100000001 - 11.04107 46.798209 - 11.075779 46.8208120000001 - 11.0756700000001 46.858201 - 11.098869 46.885701 - 11.09757 46.9062999999999 - 11.107598 46.9197990000001 - 11.109271 46.927398 - 11.1537600000001 46.9348000000001 - 11.1590150000001 46.941613 - 11.164508 46.9441650000001 - 11.164538 46.9549230000001 - 11.1620129999999 46.962428 - 11.164586 46.9681970000001 - 11.1765830000001 46.967857 - 11.1838330000001 46.9717699999999 - 11.2005300000001 46.972374 - 11.2086 46.9673530000001 - 11.2251899999999 46.9731030000001 - 11.239517 46.97211 - 11.247207 46.9761320000001 - 11.2610000000001 46.9793780000001 - 11.2747290000001 46.9841050000001 - 11.2925640000001 46.987836 - 11.303205 46.9865640000001 - 11.320996 46.9935560000001 - 11.3389920000001 46.990352 - 11.3494240000001 46.9929230000001 - 11.35715 46.9930390000001 - 11.3759410000001 46.981698 - 11.3844700000001 46.975002 - 11.394728 46.971034 - 11.4084550000001 46.9692840000001 - 11.419161 46.972408 - 11.4282980000002 46.9779010000001 - 11.4341600000001 46.9785000000001 - 11.4475490000002 46.989399 - 11.46235 46.9933010000001 - 11.4695500000001 47.001862 - 11.472638 47.008214 - 11.477939 47.01225 - 11.494561 47.012699 - 11.502787 47.0113910000001 - 11.509325 47.006828 - 11.522419 47.0022470000001 - 11.531953 46.995754 - 11.538008 46.9872320000001 - 11.5523780000001 46.9930730000001 - 11.567854 46.995168 - 11.576038 46.9977300000001 - 11.581656 47.0019800000001 - 11.5887210000001 47.0051500000001 - 11.6052410000001 47.009754 - 11.610348 47.013107 - 11.617099 47.0154 - 11.6257160000001 47.0157230000001 - 11.630503 47.0115960000001 - 11.6411160000001 47.0045120000001 - 11.651136 47.0016930000001 - 11.667124 46.995423 - 11.686271 46.9961500000001 - 11.7063860000001 46.9957310000001 - 11.7159090000001 46.993461 - 11.7217110000001 46.986473 - 11.725666 46.9780880000001 - 11.7296310000002 46.9753010000001 - 11.7482310000001 46.97319 - 11.7753190000001 46.986297 - 11.8140210000001 46.988602 - 11.85997 47.0007220000001 - 11.9323220000001 47.035691 - 11.9387330000001 47.0376620000001 - 11.9529110000001 47.0333070000002 - 11.9612530000001 47.043449 - 11.9655510000001 47.0425600000002 - 11.9731050000001 47.0452840000001 - 11.9749890000001 47.0478360000001 - 11.984482 47.050145 - 11.989106 47.04852 - 11.992297 47.0511550000001 - 11.9998870000001 47.0517720000001 - 12.020428 47.0483580000001 - 12.0312130000002 47.0497710000001 - 12.034226 47.0539510000001 - 12.04895 47.054063 - 12.1287490000001 47.0792950000001 - 12.134643 47.0826570000001 - 12.1511410000001 47.082242 - 12.156951 47.0827820000001 - 12.1751110000001 47.08879 - 12.216689 47.090962 - 12.2334319999999 47.0852 -END -END diff --git a/conf/geoserver_setup_neo4j_ds.gs b/conf/geoserver_setup_neo4j_ds.gs deleted file mode 100644 index 41ad457..0000000 --- a/conf/geoserver_setup_neo4j_ds.gs +++ /dev/null @@ -1,5 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -datastore create --workspace isochrone --name Neo4J --connectionParams "dbtype=neo4j 'The directory path of the Neo4j database: '=/opt/neo4j/data/graph.db" -datastore modify --workspace isochrone --name Neo4J --description "Neo4J datastore" -datastore modify --workspace isochrone --name Neo4J --enabled true diff --git a/conf/geoserver_setup_neo4j_ft.gs b/conf/geoserver_setup_neo4j_ft.gs deleted file mode 100644 index 429b25a..0000000 --- a/conf/geoserver_setup_neo4j_ft.gs +++ /dev/null @@ -1,3 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -#layer group create --workspace isochrone --layers n4j_bolzano_ways,n4j_innsbruck_ways --name n4j_ways --styles line,line diff --git a/conf/geoserver_setup_neo4j_ft_altoadige.gs b/conf/geoserver_setup_neo4j_ft_altoadige.gs deleted file mode 100644 index c341696..0000000 --- a/conf/geoserver_setup_neo4j_ft_altoadige.gs +++ /dev/null @@ -1,5 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -# ToDo: Create featuretype for datastore "Neo4j" and public roads in southern tyrol (alto adige) -# featuretype publish --workspace isochrone --datastore Neo4J --featuretype /opt/altoadige-filtered.osm -# featuretype create --workspace isochrone --datastore Neo4J --featuretype /opt/altoadige-filtered.osm --enabled true --advertised true --title n4j_altoadige_ways --srs EPSG:4326 --schema "the_geom:LineString:srid=4326" --projectionpolicy FORCE_DECLARED diff --git a/conf/geoserver_setup_neo4j_ft_bolzano.gs b/conf/geoserver_setup_neo4j_ft_bolzano.gs deleted file mode 100644 index 205baa8..0000000 --- a/conf/geoserver_setup_neo4j_ft_bolzano.gs +++ /dev/null @@ -1,5 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -# ToDo: Create featuretype for datastore "Neo4j" and public roads in bozen -# featuretype publish --workspace isochrone --datastore Neo4J --featuretype /opt/bolzano-filtered.osm -# featuretype create --workspace isochrone --datastore Neo4J --featuretype /opt/bolzano-filtered.osm --enabled true --advertised true --title n4j_bolzano_ways --srs EPSG:4326 --schema "the_geom:LineString:srid=4326" --projectionpolicy FORCE_DECLARED diff --git a/conf/geoserver_setup_neo4j_ft_innsbruck.gs b/conf/geoserver_setup_neo4j_ft_innsbruck.gs deleted file mode 100644 index 14c31d6..0000000 --- a/conf/geoserver_setup_neo4j_ft_innsbruck.gs +++ /dev/null @@ -1,5 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -# ToDo: Create featuretype for datastore "Neo4j" and public roads in Innsbruck -# featuretype publish --workspace isochrone --datastore Neo4J --featuretype /opt/innsbruck-filtered.osm -# featuretype create --workspace isochrone --datastore Neo4J --featuretype /opt/innsbruck-filtered.osm --enabled true --advertised true --title neo4j_innsbruck_ways --srs EPSG:4326 --schema "the_geom:LineString:srid=4326" --projectionpolicy FORCE_DECLARED diff --git a/conf/geoserver_setup_neo4j_ft_italy.gs b/conf/geoserver_setup_neo4j_ft_italy.gs deleted file mode 100644 index add722f..0000000 --- a/conf/geoserver_setup_neo4j_ft_italy.gs +++ /dev/null @@ -1,5 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -# ToDo: Create featuretype for datastore "Neo4j" and public roads in Italy -# featuretype publish --workspace isochrone --datastore Neo4J --featuretype /opt/italy-filtered.osm -# featuretype create --workspace isochrone --datastore Neo4J --featuretype /opt/italy-filtered.osm --enabled true --advertised true --title n4j_italy_ways --srs EPSG:4326 --schema "the_geom:LineString:srid=4326" --projectionpolicy FORCE_DECLARED diff --git a/conf/geoserver_setup_neo4j_ft_sanfrancisco.gs b/conf/geoserver_setup_neo4j_ft_sanfrancisco.gs deleted file mode 100644 index cbe4928..0000000 --- a/conf/geoserver_setup_neo4j_ft_sanfrancisco.gs +++ /dev/null @@ -1,5 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -# ToDo: Create featuretype for datastore "Neo4j" and public roads in SanFrancisco -# featuretype publish --workspace isochrone --datastore Neo4J --featuretype /opt/sanfrancisco-filtered.osm -# featuretype create --workspace isochrone --datastore Neo4J --featuretype /opt/sanfrancisco-filtered.osm --enabled true --advertised true --title n4j_sanfrancisco_ways --srs EPSG:4326 --schema "the_geom:LineString:srid=4326" --projectionpolicy FORCE_DECLARED diff --git a/conf/geoserver_setup_neo4j_ft_washingtondc.gs b/conf/geoserver_setup_neo4j_ft_washingtondc.gs deleted file mode 100644 index 6dac935..0000000 --- a/conf/geoserver_setup_neo4j_ft_washingtondc.gs +++ /dev/null @@ -1,5 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -# ToDo: Create featuretype for datastore "Neo4j" and public roads in SanFrancisco -# featuretype publish --workspace isochrone --datastore Neo4J --featuretype /opt/washingtondc-filtered.osm -# featuretype create --workspace isochrone --datastore Neo4J --featuretype /opt/washingtondc-filtered.osm --enabled true --advertised true --title n4j_washingtondc_ways --srs EPSG:4326 --schema "the_geom:LineString:srid=4326" --projectionpolicy FORCE_DECLARED diff --git a/conf/geoserver_setup_postgis_ds.gs b/conf/geoserver_setup_postgis_ds.gs deleted file mode 100644 index 3dc4517..0000000 --- a/conf/geoserver_setup_postgis_ds.gs +++ /dev/null @@ -1,5 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -postgis datastore create --workspace isochrone --datastore PostGIS --host localhost --port 5432 --database isochrone --schema public --user @db_username@ --password @db_password@ -datastore modify --workspace isochrone --name PostGIS --description "PostGIS datastore" -datastore modify --workspace isochrone --name PostGIS --enabled true \ No newline at end of file diff --git a/conf/geoserver_setup_postgis_ft.gs b/conf/geoserver_setup_postgis_ft.gs deleted file mode 100644 index cb7c96a..0000000 --- a/conf/geoserver_setup_postgis_ft.gs +++ /dev/null @@ -1,3 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -layer group create --workspace isochrone --layers pg_bolzano_ways,pg_innsbruck_ways --name pg_ways --styles line,line diff --git a/conf/geoserver_setup_postgis_ft_altoadige.gs b/conf/geoserver_setup_postgis_ft_altoadige.gs deleted file mode 100644 index 1d4fac5..0000000 --- a/conf/geoserver_setup_postgis_ft_altoadige.gs +++ /dev/null @@ -1,6 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -postgis featuretype publish --workspace isochrone --datastore PostGIS --table osm_altoadige_ways -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "osm_altoadige_ways" --name "altoadige_ways" -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "altoadige_ways" --title "Ways in SouthTyrol" -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "altoadige_ways" --enabled true diff --git a/conf/geoserver_setup_postgis_ft_bolzano.gs b/conf/geoserver_setup_postgis_ft_bolzano.gs deleted file mode 100644 index b02b963..0000000 --- a/conf/geoserver_setup_postgis_ft_bolzano.gs +++ /dev/null @@ -1,6 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -postgis featuretype publish --workspace isochrone --datastore PostGIS --table osm_bolzano_ways -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "osm_bolzano_ways" --name "bolzano_ways" -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "bolzano_ways" --title "Ways in Bozen" -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "bolzano_ways" --enabled true diff --git a/conf/geoserver_setup_postgis_ft_innsbruck.gs b/conf/geoserver_setup_postgis_ft_innsbruck.gs deleted file mode 100644 index 87aa1b5..0000000 --- a/conf/geoserver_setup_postgis_ft_innsbruck.gs +++ /dev/null @@ -1,6 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -postgis featuretype publish --workspace isochrone --datastore PostGIS --table osm_innsbruck_ways -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "osm_innsbruck_ways" --name "innsbruck_ways" -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "innsbruck_ways" --title "Ways in Innsbruck" -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "innsbruck_ways" --enabled true diff --git a/conf/geoserver_setup_postgis_ft_italy.gs b/conf/geoserver_setup_postgis_ft_italy.gs deleted file mode 100644 index 42212df..0000000 --- a/conf/geoserver_setup_postgis_ft_italy.gs +++ /dev/null @@ -1,6 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -postgis featuretype publish --workspace isochrone --datastore PostGIS --table osm_italy_ways -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "osm_italy_ways" --name "italy_ways" -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "italy_ways" --title "Ways in Italy" -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "italy_ways" --enabled true diff --git a/conf/geoserver_setup_postgis_ft_sanfrancisco.gs b/conf/geoserver_setup_postgis_ft_sanfrancisco.gs deleted file mode 100644 index 2b06f82..0000000 --- a/conf/geoserver_setup_postgis_ft_sanfrancisco.gs +++ /dev/null @@ -1,6 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -postgis featuretype publish --workspace isochrone --datastore PostGIS --table osm_sanfrancisco_ways -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "osm_sanfrancisco_ways" --name "sanfrancisco_ways" -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "sanfrancisco_ways" --title "Ways in SanFrancisco" -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "sanfrancisco_ways" --enabled true diff --git a/conf/geoserver_setup_postgis_ft_washingtondc.gs b/conf/geoserver_setup_postgis_ft_washingtondc.gs deleted file mode 100644 index eb57c2a..0000000 --- a/conf/geoserver_setup_postgis_ft_washingtondc.gs +++ /dev/null @@ -1,6 +0,0 @@ -geoserver set --url http://localhost:8080/geoserver --user admin --password geoserver - -postgis featuretype publish --workspace isochrone --datastore PostGIS --table osm_washingtondc_ways -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "osm_washingtondc_ways" --name "washingtondc_ways" -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "washingtondc_ways" --title "Ways in Washington,D.C." -featuretype modify --workspace isochrone --datastore PostGIS --featuretype "washingtondc_ways" --enabled true -- GitLab