]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge pull request #2160 from lonvia/introduce-project-dir
authorSarah Hoffmann <lonvia@denofr.de>
Thu, 4 Feb 2021 08:52:59 +0000 (09:52 +0100)
committerGitHub <noreply@github.com>
Thu, 4 Feb 2021 08:52:59 +0000 (09:52 +0100)
Officially introduce and recommend use of a project directory

sql/functions/utils.sql

index 0a49eef52fc16ee1068642e73ac337880e2d1ed1..18d4211bb711399edde86b86a8900f2711788e2a 100644 (file)
@@ -426,7 +426,7 @@ DECLARE
   geo RECORD;
 BEGIN
   -- 10000000000 is ~~ 1x1 degree
-  FOR geo IN select quad_split_geometry(geometry, 0.01, 20) as geom LOOP
+  FOR geo IN select quad_split_geometry(geometry, 0.25, 20) as geom LOOP
     RETURN NEXT geo.geom;
   END LOOP;
   RETURN;