mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
34 lines
1.1 KiB
PowerShell
Executable File
34 lines
1.1 KiB
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Lists major earthquakes for the last 30 days
|
|
.DESCRIPTION
|
|
Lists earthquakes with magnitude >= 6.0 for the last 30 days
|
|
list-earthquakes.ps1
|
|
.EXAMPLE
|
|
PS> ./list-earthquakes
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
$Format="csv" # csv, geojson, kml, text, xml
|
|
$MinMagnitude=5.8
|
|
$OrderBy="magnitude" # time, time-asc, magnitude, magnitude-asc
|
|
|
|
function ListEarthquakes {
|
|
write-progress "Loading data ..."
|
|
$Earthquakes = (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 $Earthquakes) {
|
|
new-object PSObject -Property @{ Mag=$Quake.mag; Depth=$Quake.depth; Location=$Quake.place; Time=$Quake.time }
|
|
}
|
|
}
|
|
|
|
try {
|
|
ListEarthquakes | format-table -property @{e='Mag';width=5},@{e='Location';width=42},@{e='Depth';width=6},Time
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|