mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-23 05:35:13 +03:00
20 lines
395 B
PHP
Executable File
20 lines
395 B
PHP
Executable File
<?php
|
|
|
|
function getOsm2pgsqlBinary()
|
|
{
|
|
$sBinary = getSetting('OSM2PGSQL_BINARY');
|
|
|
|
return $sBinary ? $sBinary : CONST_Default_Osm2pgsql;
|
|
}
|
|
|
|
function getImportStyle()
|
|
{
|
|
$sStyle = getSetting('IMPORT_STYLE');
|
|
|
|
if (in_array($sStyle, array('admin', 'street', 'address', 'full', 'extratags'))) {
|
|
return CONST_ConfigDir.'/import-'.$sStyle.'.style';
|
|
}
|
|
|
|
return $sStyle;
|
|
}
|