Skip to content

Instantly share code, notes, and snippets.

@parklander
Created November 12, 2015 19:48
Show Gist options
  • Save parklander/e8626ae12fca835b46fd to your computer and use it in GitHub Desktop.
Save parklander/e8626ae12fca835b46fd to your computer and use it in GitHub Desktop.
curl -s http://ebird.org/ws1.1/data/notable/region/recent\?rtype\=subnational1\&r\=CA-MB\&fmt\=json\&back\=1 \
| jq -c '[.[] | {type: "Feature", geometry: {type: "Point", coordinates: [.lng, .lat]}, properties: {"marker-symbol": "marker", "Common Name": .comName, "Scientific Name": .sciName, "Location": .locName}}]' \
| jq '. | {"type": "FeatureCollection", "features": [.[]]}' \
| gist -o -f birds.geojson
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment