Skip to content

Instantly share code, notes, and snippets.

@brunobord
Last active March 1, 2021 22:38
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 brunobord/ae72088203b9fbd46dff2cdd330f3310 to your computer and use it in GitHub Desktop.
Save brunobord/ae72088203b9fbd46dff2cdd330f3310 to your computer and use it in GitHub Desktop.
Earthquakes / Iceland
URL=https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/4.5_day.geojson
URL=https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_day.geojson
URL=https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojson
curl $URL | jq '.features[]
| select( .properties.place | contains("Iceland"))
| {
timestamp: .properties.time | (. / 1000 | strftime("%Y-%m-%d %R")),
mag: .properties.mag,
location: .properties.place,
id: .id
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment