This commit is contained in:
vv01f 2019-06-05 11:46:24 +02:00
parent c26652c306
commit 28d69ca91e
Signed by untrusted user who does not match committer: vv01f
GPG Key ID: 02625A16AC1D1FF6
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
#!/usr/bin/env sh
for file in $(ls *-csv) ; do
out=$(echo ${file}|cut -d- -f1)
test -e ${out}".geojson" && { echo "file exists: "${out}", skipping."; continue; }
echo ./lookup.py ${file}
#~ ./lookup.py ${file} > ${out}.geojson
./lookup.py ${file} > ${out}".geojson"
done