Skip to content

Instantly share code, notes, and snippets.

@stelf
Last active December 3, 2021 12:15
Show Gist options
  • Save stelf/228692aceacffbf308600ba50ee928f5 to your computer and use it in GitHub Desktop.
Save stelf/228692aceacffbf308600ba50ee928f5 to your computer and use it in GitHub Desktop.
a short excursion into jq black magic
jq -sc '.[] | .result."attendance-areas"[] | {
type: "Feature",
properties: {
id: .id,
grade: .grade | tostring,
openEnrollment: .openEnrollment,
name: .name, },
geometry: .geometry, }' input/school-page-*.json > prepared/school.geojson
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment