Add PPLC (capitals) to cities.txt, and thus to geodata.xml

This commit is contained in:
Gergely Polonkai 2014-08-16 23:47:48 +02:00
parent b61cd26944
commit 4a52e037af
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ BEGIN {
FS="\t"
}
{
if ($7 != "P" || $8 != "PPL" || $15 < 1000) next
if ($7 != "P" || ($8 != "PPL" && $8 != "PPLC") || $15 < 1000) next
print $9 FS $2 FS $5 FS $6 FS $16 FS $18
}