This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Convert a set of GPX files to a single GeoJSON, using: | |
# - https://github.com/mapbox/togeojson | |
# - https://github.com/mapbox/geojson-merge | |
for filename in *.gpx | |
do | |
togeojson $filename > geojsons/$filename.geojson | |
done | |
# Merge the files into one in the end |