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

changing SRID to 4326 (tests showed that especially for MineR(X) this is much faster)

parent 2f0c475a
No related branches found
No related tags found
No related merge requests found
Pipeline #
Upcoming version: 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) - renaming node type property (Nikolaus Krismer)
- fixing styles after fixing attribute upper-case issue in project isochrone-web (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) - adding MineT(X) functions for geography datatype (Nikolaus Krismer)
......
...@@ -16,8 +16,8 @@ IMPORT_DATA_SPATIALITE=true ...@@ -16,8 +16,8 @@ IMPORT_DATA_SPATIALITE=true
# Comma separated list of srids for which datasets will be generated # Comma separated list of srids for which datasets will be generated
# This is useful when creating multiple datasets (when creating/updating data from scratch) # 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 # 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,4326"
TARGET_SRID="3857" TARGET_SRID="4326"
UPDATE_DATA=false UPDATE_DATA=false
CACHE_DIR_LOCAL="/tmp/vagrant-cache" CACHE_DIR_LOCAL="/tmp/vagrant-cache"
......
...@@ -2,4 +2,4 @@ According to [this website](https://www.doag.org/formes/servlet/DocNavi?action=g ...@@ -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). 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. 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).
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