]> git.openstreetmap.org Git - nominatim.git/commitdiff
Add osm2pgsql flat node support via settings.php
authorFrederik Ramm <frederik@remote.org>
Thu, 16 May 2013 07:03:16 +0000 (09:03 +0200)
committerFrederik Ramm <frederik@remote.org>
Thu, 16 May 2013 07:03:16 +0000 (09:03 +0200)
settings/settings.php
utils/setup.php
utils/update.php

index 9b4320e86d6b99e1d99f4ff67ec3e7ad04d53412..dbd9bf930cc801ccd45287001d4696dcb27ae98e 100644 (file)
@@ -17,6 +17,9 @@
        @define('CONST_Osm2pgsql_Binary', CONST_BasePath.'/osm2pgsql/osm2pgsql');
        @define('CONST_Osmosis_Binary', '/usr/bin/osmosis');
 
+    // osm2pgsql settings
+       @define('CONST_Osm2pgsql_Flatnode_File', null);
+
        // Replication settings
        @define('CONST_Replication_Url', 'http://planet.openstreetmap.org/replication/minute');
        @define('CONST_Replication_MaxInterval', '3600');
index 1c61a56b31f23c558465744e2797534afada8b23..c0bf0a39e994165b35c84b51ee2117f31fe8d153 100755 (executable)
                        echo "Please download and build osm2pgsql.\nIf it is already installed, check the path in your local settings (settings/local.php) file.\n";
                        fail("osm2pgsql not found in '$osm2pgsql'");
                }
+
+        if (!is_null(CONST_Osm2pgsql_Flatnode_File))
+        {
+            $osm2pgsql .= ' --flat-nodes '.CONST_Osm2pgsql_Flatnode_File;
+        }
                $osm2pgsql .= ' -lsc -O gazetteer --hstore';
                $osm2pgsql .= ' -C '.$iCacheMemory;
                $osm2pgsql .= ' -P '.$aDSNInfo['port'];
index 76d6f8582c2e1e9646845890b1d451b5ff8c6527..edfc53c1e1c8c67f824f2918ba03f232e9244c34 100755 (executable)
                {
                        // Import the file
                        $sCMD = CONST_Osm2pgsql_Binary.' -klas -C 2000 -O gazetteer -d '.$aDSNInfo['database'].' '.$sNextFile;
+            if (!is_null(CONST_Osm2pgsql_Flatnode_File))
+            {
+                $sCMD .= ' --flat-nodes '.CONST_Osm2pgsql_Flatnode_File;
+            }
                        echo $sCMD."\n";
                        exec($sCMD, $sJunk, $iErrorLevel);
 
 
                // import generated change file
                $sCMD = CONST_Osm2pgsql_Binary.' -klas -C 2000 -O gazetteer -d '.$aDSNInfo['database'].' '.$sTemporaryFile;
+        if (!is_null(CONST_Osm2pgsql_Flatnode_File))
+        {
+            $sCMD .= ' --flat-nodes '.CONST_Osm2pgsql_Flatnode_File;
+        }
                echo $sCMD."\n";
                exec($sCMD, $sJunk, $iErrorLevel);
                if ($iErrorLevel)
                $sCMDDownload = $sOsmosisCMD.' --read-replication-interval workingDirectory='.$sOsmosisConfigDirectory.' --simplify-change --write-xml-change '.$sImportFile;
                $sCMDCheckReplicationLag = $sOsmosisCMD.' -q --read-replication-lag workingDirectory='.$sOsmosisConfigDirectory;
                $sCMDImport = CONST_Osm2pgsql_Binary.' -klas -C 2000 -O gazetteer -d '.$aDSNInfo['database'].' '.$sImportFile;
+        if (!is_null(CONST_Osm2pgsql_Flatnode_File))
+        {
+            $sCMDImport .= ' --flat-nodes '.CONST_Osm2pgsql_Flatnode_File;
+        }
                $sCMDIndex = $sBasePath.'/nominatim/nominatim -i -d '.$aDSNInfo['database'].' -t '.$aResult['index-instances'];
                if (!$aResult['no-npi']) {
                        $sCMDIndex .= '-F ';