PowerShell/Scripts/list-earthquakes.ps1

27 lines
1022 B
PowerShell
Raw Normal View History

2021-04-21 19:53:52 +02:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX list-earthquakes.ps1
2021-03-22 20:10:18 +01:00
.DESCRIPTION lists earthquakes with magnitude >= 6.0 for the last 30 days
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-12-14 20:28:21 +01:00
$Format="csv" # csv, geojson, kml, text, xml
2021-05-13 10:14:01 +02:00
$MinMagnitude=5.8
$OrderBy="magnitude" # time, time-asc, magnitude, magnitude-asc
function ListEarthquakes {
write-progress "Loading data ..."
2021-05-13 10:37:19 +02:00
$Earthquakes = (invoke-webRequest -uri "https://earthquake.usgs.gov/fdsnws/event/1/query?format=$Format&minmagnitude=$MinMagnitude&orderby=$OrderBy" -userAgent "curl" -useBasicParsing).Content | ConvertFrom-CSV
2021-05-13 10:14:01 +02:00
foreach ($Quake in $Earthquakes) {
2021-05-13 10:33:34 +02:00
new-object PSObject -Property @{ Mag=$Quake.mag; Depth=$Quake.depth; Location=$Quake.place; Time=$Quake.time }
2021-05-13 10:14:01 +02:00
}
}
2020-12-14 20:28:21 +01:00
try {
2021-05-16 11:26:34 +02:00
ListEarthquakes | format-table -property @{e='Mag';width=5},@{e='Location';width=42},@{e='Depth';width=6},Time
2020-12-14 20:28:21 +01:00
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-14 20:28:21 +01:00
exit 1
}