mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-12-27 23:15:12 +03:00
12 lines
254 B
PHP
12 lines
254 B
PHP
|
|
<?php
|
|
@define('CONST_LibDir', dirname(dirname(__FILE__)));
|
|
|
|
require_once(CONST_LibDir.'/init-cmd.php');
|
|
|
|
loadSettings(getcwd());
|
|
|
|
(new \Nominatim\Shell(getSetting('NOMINATIM_TOOL')))
|
|
->addParams('special-phrases', '--import-from-wiki')
|
|
->run();
|