mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-27 00:49:55 +03:00
298ed11261
This replaces {data_dir}/settings throughout the code, so that the configuration may be placed somewhere else in the directory structure (e.g. in /etc).
35 lines
740 B
PHP
Executable File
35 lines
740 B
PHP
Executable File
<?php
|
|
|
|
function checkInFile($sOSMFile)
|
|
{
|
|
if (!isset($sOSMFile)) {
|
|
fail('missing --osm-file for data import');
|
|
}
|
|
|
|
if (!file_exists($sOSMFile)) {
|
|
fail('the path supplied to --osm-file does not exist');
|
|
}
|
|
|
|
if (!is_readable($sOSMFile)) {
|
|
fail('osm-file "' . $aCMDResult['osm-file'] . '" not readable');
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|