-
Notifications
You must be signed in to change notification settings - Fork 0
/
convert-geojson.sh
executable file
·31 lines (27 loc) · 1.07 KB
/
convert-geojson.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
#Note: gdal > 3.7
walk_dir () {
shopt -s nullglob dotglob
for pathname in "$1"/*; do
if [ -d "$pathname" ]; then
walk_dir "$pathname"
else
case "$pathname" in
*.geojson)
#echo $pathname
LAYER=$($GDAL_PATH/ogrinfo -json "$pathname" | jq '.layers[0].name')
echo "Converting $LAYER to GeoPackage"
OUT=$(echo $LAYER | tr -d '"')
OUT_L=$(echo "$OUT" | tr '[:upper:]' '[:lower:]')
# echo $OUT_L
$GDAL_PATH/ogr2ogr $OUTPUT_DIR/$OUT_L.geojson "$pathname" -f GeoJSON -explodecollections -t_srs EPSG:4326
#echo "Converting $LAYER to GeoPackage"
$GDAL_PATH/ogr2ogr $OUTPUT_DIR/$OUT_L.gpkg "$pathname" -f GPKG -a_srs EPSG:4326
esac
fi
done
}
GDAL_PATH=/home/joana/apps/bin/
DOWNLOADING_DIR=/home/joana/projects/EC/igot/newer/urban_health
OUTPUT_DIR=/home/joana/projects/EC/igot/newer/output
walk_dir "$DOWNLOADING_DIR"