PowerShell/Scripts/list-earthquakes.ps1

34 lines
1.0 KiB
PowerShell
Raw Normal View History

2021-04-21 19:53:52 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
list-earthquakes.ps1
.DESCRIPTION
Lists earthquakes with magnitude >= 6.0 for the last 30 days
.EXAMPLE
PS> .\list-earthquakes.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2021-08-03 15:53:57 +02:00
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
}