mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-24 21:44:45 +03:00
77 lines
2.8 KiB
PHP
Executable File
77 lines
2.8 KiB
PHP
Executable File
#!/usr/bin/php -Cq
|
|
<?php
|
|
|
|
require_once(dirname(dirname(__FILE__)).'/lib/init-cmd.php');
|
|
ini_set('memory_limit', '800M');
|
|
|
|
$aCMDOptions = array(
|
|
"Create and setup nominatim search system",
|
|
array('help', 'h', 0, 1, 0, 0, false, 'Show Help'),
|
|
array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'),
|
|
array('verbose', 'v', 0, 1, 0, 0, 'bool', 'Verbose output'),
|
|
|
|
array('create-db', '', 0, 1, 0, 0, 'bool', 'Build a blank nominatim db'),
|
|
array('load-data', '', 0, 1, 1, 1, 'realpath', 'Import a osm file'),
|
|
array('create-partitions', '', 0, 1, 0, 0, 'bool', 'Create required partition tables and triggers'),
|
|
);
|
|
getCmdOpt($_SERVER['argv'], $aCMDOptions, $aCMDResult, true, true);
|
|
|
|
$bDidSomething = false;
|
|
|
|
if ($aCMDResult['create-db'])
|
|
{
|
|
$bDidSomething = true;
|
|
// TODO: path detection, detection memory, etc.
|
|
// passthru('createdb nominatim');
|
|
passthru('createlang plpgsql nominatim');
|
|
passthru('psql -f '.CONST_Path_Postgresql_Contrib.'/_int.sql nominatim');
|
|
passthru('psql -f '.CONST_Path_Postgresql_Contrib.'/hstore.sql nominatim');
|
|
passthru('psql -f '.CONST_Path_Postgresql_Postgis.'/postgis.sql nominatim');
|
|
passthru('psql -f '.CONST_Path_Postgresql_Postgis.'/spatial_ref_sys.sql nominatim');
|
|
passthru('psql -f '.CONST_BasePath.'/data/country_name.sql nominatim');
|
|
passthru('psql -f '.CONST_BasePath.'/data/country_osm_grid.sql nominatim');
|
|
passthru('psql -f '.CONST_BasePath.'/data/gb_postcode.sql nominatim');
|
|
passthru('psql -f '.CONST_BasePath.'/data/us_statecounty.sql nominatim');
|
|
passthru('psql -f '.CONST_BasePath.'/data/us_state.sql nominatim');
|
|
passthru('psql -f '.CONST_BasePath.'/data/worldboundaries.sql nominatim');
|
|
}
|
|
|
|
if (isset($aCMDResult['load-data']) && $aCMDResult['load-data'])
|
|
{
|
|
$bDidSomething = true;
|
|
passthru(CONST_BasePath.'/osm2pgsql/osm2pgsql -lsc -O gazetteer -C 10000 --hstore -d nominatim '.$aCMDResult['load-data']);
|
|
passthru('psql -f '.CONST_BasePath.'/sql/functions.sql nominatim');
|
|
passthru('psql -f '.CONST_BasePath.'/sql/tables.sql nominatim');
|
|
}
|
|
|
|
if ($aCMDResult['create-partitions'])
|
|
{
|
|
$bDidSomething = true;
|
|
$sSQL = 'select distinct country_code from country_name order by country_code';
|
|
$aPartitions = $oDB->getCol($sSQL);
|
|
if (PEAR::isError($aPartitions))
|
|
{
|
|
fail($aPartitions->getMessage());
|
|
}
|
|
$aPartitions[] = 'none';
|
|
|
|
$sTemplate = file_get_contents(CONST_BasePath.'/sql/partitions.src.sql');
|
|
preg_match_all('#^-- start(.*?)^-- end#ms', $sTemplate, $aMatches, PREG_SET_ORDER);
|
|
foreach($aMatches as $aMatch)
|
|
{
|
|
$sResult = '';
|
|
foreach($aPartitions as $sPartitionName)
|
|
{
|
|
$sResult .= str_replace('-partition-', $sPartitionName, $aMatch[1]);
|
|
}
|
|
$sTemplate = str_replace($aMatch[0], $sResult, $sTemplate);
|
|
}
|
|
echo $sTemplate;
|
|
exit;
|
|
}
|
|
|
|
if (!$bDidSomething)
|
|
{
|
|
showUsage($aCMDOptions, true);
|
|
}
|