Newer
Older
website / org / gpx / 20260314_london_italy / compress.sh
#!/bin/bash

OUTDIR=compressed

mkdir -p $OUTDIR

for gpx in $(find . -iname "*.gpx");
do
    echo -n "Compressing ${gpx}... "
    ../../../gpx_web_viewer/python/gpxsimplify.sh -f ${gpx} -d 10 > compressed/${gpx}
    echo "Done!"
done