curl -s http://download.maxmind.com/download/worldcities/worldcitiespop.txt.gz \
| zcat \
| awk -F$',' '{if ($1 == "tr") print $6, $7}' \
| gnuplot -p -e \
"set terminal pngcairo size 1280, 720 background rgb 'black';"\
"set size ratio -1; unset key; unset tics; unset border;"\
"plot '<cat' using (sin(pi/180*(\$2-35))*cos(pi/180*\$1)):(sin(pi/180*(\$1-39))) with points ls 11"\
> tr.png
Başka bir lokasyon veri tabanı da geonames fakat tab ile ayrılmış durumda.
curl -s http://download.geonames.org/export/dump/cities1000.zip | zcat | awk -F$'\t'
Cok keyifli imis :) Ayrica gnuplot FTW! (saka maka gecen sene bir is icin epey faydasi dokunmustu)