]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/setup_functions.php
bdd: rename db_ops steps
[nominatim.git] / lib / setup_functions.php
index 5aa5919b2e63ec5f768c19d24033796b3441ebb8..dab6a8e73e399f09d8682085f15ea2335f6bb7f6 100755 (executable)
@@ -14,3 +14,19 @@ function checkInFile($sOSMFile)
         fail('osm-file "' . $aCMDResult['osm-file'] . '" not readable');
     }
 }
+
+function getOsm2pgsqlBinary()
+{
+    return getSetting('OSM2PGSQL_BINARY', CONST_Default_Osm2pgsql);
+}
+
+function getImportStyle()
+{
+    $sStyle = getSetting('IMPORT_STYLE');
+
+    if (in_array($sStyle, array('admin', 'street', 'address', 'full', 'extratags'))) {
+        return CONST_DataDir.'/settings/import-'.$sStyle.'.style';
+    }
+
+    return $sStyle;
+}