aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/csv2geojson10
1 files changed, 4 insertions, 6 deletions
diff --git a/scripts/csv2geojson b/scripts/csv2geojson
index 988ead0..e3f0a74 100755
--- a/scripts/csv2geojson
+++ b/scripts/csv2geojson
@@ -5,14 +5,12 @@ for i in "$@"
5do 5do
6case $i in 6case $i in
7 -s) 7 -s)
8 lon_col=0 8 lon_col=0; lat_col=1
9 lat_col=1 9 shift;;
10 shift 10
11 ;;
12 *) 11 *)
13 csv=$i 12 csv=$i
14 shift 13 shift;;
15 ;;
16esac 14esac
17done 15done
18 16