diff --git a/CHANGELOG.md b/CHANGELOG.md
index d54f9d26131e99fdefed40317031acdad1535992..4d7d39547dfd5d110cf1437bbe8718b10aedb0c0 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 fc02f3f1be2293d4ba6f3b3e2c1fb80c4f128020..4ad5baefe6f1d94e99514fbc791ccafa2b79cf2d 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 a69a9b785dfe9ec39d38e1bba9870b16faf57631..e4b371f5a480b70553e76d4d9c2a67577dd2e95c 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).