3 function getOsm2pgsqlBinary()
5 $sBinary = getSetting('OSM2PGSQL_BINARY');
7 return $sBinary ? $sBinary : CONST_Default_Osm2pgsql;
10 function getImportStyle()
12 $sStyle = getSetting('IMPORT_STYLE');
14 if (in_array($sStyle, array('admin', 'street', 'address', 'full', 'extratags'))) {
15 return CONST_ConfigDir.'/import-'.$sStyle.'.style';