generalize

This commit is contained in:
vv01f 2019-06-05 11:40:08 +02:00
parent bd57ad2f3e
commit 0c9a86216f
No known key found for this signature in database
GPG Key ID: 02625A16AC1D1FF6
2 changed files with 6 additions and 2 deletions

View File

@ -1,2 +0,0 @@
#!/usr/bin/env sh
./lookup.py > ct.geojson

6
create-geojson.sh Executable file
View File

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