Skip to content

Instantly share code, notes, and snippets.

@maning
Forked from perrygeo/ogrcat
Created June 12, 2017 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maning/c145c49b1dd912c3d2a83e331eb94e4c to your computer and use it in GitHub Desktop.
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
#!/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