PowerShell/scripts/list-earthquakes.ps1

45 lines
1.5 KiB
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +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
2024-05-14 15:50:59 +02:00
This PowerShell script lists major earthquakes for the last 30 days.
.PARAMETER minMagnitude
Specifies the minimum magnitude to list (5.5 by default)
2021-07-13 21:10:02 +02:00
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./list-earthquakes.ps1
2024-05-14 15:50:59 +02:00
Mag Location Depth Time UTC
--- -------- ----- --------
2023-08-06 21:35:36 +02:00
7.2 98 km S of Sand Point, Alaska 33 km 2023-07-16T06:48:22.606Z
...
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
2024-05-14 15:50:59 +02:00
param([float]$minMagnitude=5.5)
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
$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..."
2024-05-14 15:50:59 +02:00
$quakes = (Invoke-WebRequest -URI "https://earthquake.usgs.gov/fdsnws/event/1/query?format=$Format&minmagnitude=$minMagnitude&orderby=$OrderBy" -userAgent "curl" -useBasicParsing).Content | ConvertFrom-CSV
Write-Progress -completed "done."
foreach($quake in $quakes) {
[int]$depth = $quake.depth
New-Object PSObject -Property @{ Mag=$quake.mag; Depth="$depth km"; Location=$quake.place; 'Time UTC'=$quake.time }
2021-05-13 10:14:01 +02:00
}
2024-05-14 15:50:59 +02:00
2021-05-13 10:14:01 +02:00
}
2020-12-14 20:28:21 +01:00
try {
2024-05-14 15:50:59 +02:00
ListEarthquakes | Format-Table -property @{e='Mag';width=5},@{e='Location';width=42},@{e='Depth';width=12},'Time UTC'
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
2023-08-06 21:35:36 +02:00
}