);
getCmdOpt($_SERVER['argv'], $aCMDOptions, $aCMDResult, true, true);
+ include(CONST_BasePath.'/settings/phrase_settings.php');
+
if ($aCMDResult['countries']) {
echo "select getorcreate_country(make_standard_name('uk'), 'gb');\n";
if ($aCMDResult['wiki-import'])
{
- include(CONST_BasePath.'/settings/phrase_settings.php');
$aPairs = array();
foreach($aLanguageIn as $sLanguage)
{
foreach($aMatches as $aMatch)
{
- $sLabel = $aMatch[1];
- $sClass = $aMatch[2];
- $sType = $aMatch[3];
+ $sLabel = trim($aMatch[1]);
+ $sClass = trim($aMatch[2]);
+ $sType = trim($aMatch[3]);
# hack around a bug where building=yes was imported with
# quotes into the wiki
$sType = preg_replace('/"/', '', $sType);
foreach($aPairs as $aPair)
{
+ if ($aPair[0] == 'yes') continue;
+ if ($aPair[1] == 'yes') continue;
+ if ($aPair[0] == 'highway') continue;
if ($aPair[1] == 'highway') continue;
echo "create table place_classtype_".pg_escape_string($aPair[0])."_".pg_escape_string($aPair[1])." as ";