From dbbbcacf5e8c8641055e6728bc859f382c304c38 Mon Sep 17 00:00:00 2001 From: Nikolaus Krismer <nikolaus.krismer@uibk.ac.at> Date: Wed, 7 Sep 2016 10:28:36 +0200 Subject: [PATCH] changing SRID to 4326 (tests showed that especially for MineR(X) this is much faster) --- CHANGELOG.md | 1 + bootstrap/config.sh | 4 ++-- conf/srid_82344_info.md | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d54f9d2..4d7d395 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ Upcoming version: ----------------- + - 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) - adding MineT(X) functions for geography datatype (Nikolaus Krismer) diff --git a/bootstrap/config.sh b/bootstrap/config.sh index fc02f3f..4ad5bae 100755 --- a/bootstrap/config.sh +++ b/bootstrap/config.sh @@ -16,8 +16,8 @@ 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="4326,3857" -TARGET_SRID="3857" +#TARGET_SRID="3857,4326" +TARGET_SRID="4326" UPDATE_DATA=false CACHE_DIR_LOCAL="/tmp/vagrant-cache" diff --git a/conf/srid_82344_info.md b/conf/srid_82344_info.md index a69a9b7..e4b371f 100644 --- a/conf/srid_82344_info.md +++ b/conf/srid_82344_info.md @@ -2,4 +2,4 @@ According to [this website](https://www.doag.org/formes/servlet/DocNavi?action=g by oracle and not an epsg code (it is an SDO code). SDO 82344 matches SRID 32632 and therefore we need to transform the srid in the database tables. -In PostGIS this can be achieved by using the function UpdateGeometryColumn('st_edges', 'geometry' 32632). +In PostGIS this can be achieved by using the function UpdateGeometryColumn('altoadige_edges', 'geo' 32632). -- GitLab