-
-
Save maning/c145c49b1dd912c3d2a83e331eb94e4c to your computer and use it in GitHub Desktop.
ogrcat: make line-delimited geojson features to stdout from any ogr vector datasource
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
#!/bin/bash | |
# | |
# ogrcat | |
# produces line-delimited geojson features | |
# Like `fio cat` but uses ogr2ogr under the hood | |
ECHO_FEATURES="" | |
ogr2ogr -f GeoJSON /vsistdout/ "$@" | while read line | |
do | |
if [ "$line" == "\"features\": [" ]; then | |
ECHO_FEATURES="true" | |
else | |
if [ "$ECHO_FEATURES" == "true" ]; then | |
# check for end of array | |
if [[ $line == ]* ]]; then | |
exit 0 | |
fi | |
# strip trailing comma | |
echo $line | sed "s/,$//" | |
fi | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment