]> git.openstreetmap.org Git - nominatim.git/blob - lib/admin/country_languages.php
1a7ea61636b89de06d0d8455ccbb63feccecb3f5
[nominatim.git] / lib / admin / country_languages.php
1 <?php
2
3 require_once(CONST_LibDir.'/init-cmd.php');
4
5 ini_set('memory_limit', '800M');
6 ini_set('display_errors', 'stderr');
7
8 $aCMDOptions
9  = array(
10     'Import country language data from osm wiki',
11     array('help', 'h', 0, 1, 0, 0, false, 'Show Help'),
12     array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'),
13     array('verbose', 'v', 0, 1, 0, 0, 'bool', 'Verbose output'),
14     array('project-dir', '', 0, 1, 1, 1, 'realpath', 'Base directory of the Nominatim installation (default: .)'),
15    );
16 getCmdOpt($_SERVER['argv'], $aCMDOptions, $aCMDResult, true, true);
17
18 loadSettings($aCMDResult['project-dir'] ?? getcwd());
19 setupHTTPProxy();
20
21 if (true) {
22     $sURL = 'https://wiki.openstreetmap.org/wiki/Special:Export/Nominatim/Country_Codes';
23     $sWikiPageXML = file_get_contents($sURL);
24     if (preg_match_all('#\\| ([a-z]{2}) \\|\\| [^|]+\\|\\| ([a-z,]+)#', $sWikiPageXML, $aMatches, PREG_SET_ORDER)) {
25         foreach ($aMatches as $aMatch) {
26             $aLanguages = explode(',', $aMatch[2]);
27             foreach ($aLanguages as $i => $s) {
28                 $aLanguages[$i] = '"'.pg_escape_string($s).'"';
29             }
30             echo "UPDATE country_name set country_default_language_codes = '{".join(',', $aLanguages)."}' where country_code = '".pg_escape_string($aMatch[1])."';\n";
31         }
32     }
33 }