PowerShell/Scripts/list-earthquakes.ps1

33 lines
1.1 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2022-11-14 21:27:00 +01:00
Lists major earthquakes
2021-07-13 21:10:02 +02:00
.DESCRIPTION
2022-11-14 21:27:00 +01:00
This PowerShell script lists major earthquakes with magnitude >= 6.0 for the last 30 days.
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./list-earthquakes
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-05 20:21:23 +02:00
Author: Markus Fleschutz | License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-12-14 20:28:21 +01:00
2022-11-14 21:27:00 +01:00
$Format="csv" # cap, csv, geojson, kml, kmlraw, quakeml, text, xml
2021-05-13 10:14:01 +02:00
$MinMagnitude=5.8
$OrderBy="magnitude" # time, time-asc, magnitude, magnitude-asc
function ListEarthquakes {
2022-11-14 21:27:00 +01:00
Write-Progress "Loading data from earthquake.usgs.gov..."
$Quakes = (Invoke-WebRequest -URI "https://earthquake.usgs.gov/fdsnws/event/1/query?format=$Format&minmagnitude=$MinMagnitude&orderby=$OrderBy" -userAgent "curl" -useBasicParsing).Content | ConvertFrom-CSV
foreach ($Quake in $Quakes) {
[int]$Depth = $Quake.depth
New-Object PSObject -Property @{ Mag=$Quake.mag; Depth="$Depth km"; Location=$Quake.place; Time=$Quake.time }
2021-05-13 10:14:01 +02:00
}
}
2020-12-14 20:28:21 +01:00
try {
2022-09-05 20:21:23 +02:00
ListEarthquakes | Format-Table -property @{e='Mag';width=5},@{e='Location';width=42},@{e='Depth';width=12},Time
2021-09-27 10:09:45 +02:00
exit 0 # success
2020-12-14 20:28:21 +01:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-14 20:28:21 +01:00
exit 1
2022-11-14 21:27:00 +01:00
}