mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-15 10:28:55 +01:00
Updated list-earthquakes.ps1
This commit is contained in:
parent
6cd2ea934d
commit
b360ab234b
@ -2,12 +2,14 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Lists major earthquakes
|
Lists major earthquakes
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This PowerShell script lists major earthquakes with magnitude >= 6.0 for the last 30 days.
|
This PowerShell script lists major earthquakes for the last 30 days.
|
||||||
|
.PARAMETER minMagnitude
|
||||||
|
Specifies the minimum magnitude to list (5.5 by default)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./list-earthquakes.ps1
|
PS> ./list-earthquakes.ps1
|
||||||
|
|
||||||
Mag Location Depth Time
|
Mag Location Depth Time UTC
|
||||||
--- -------- ----- ----
|
--- -------- ----- --------
|
||||||
7.2 98 km S of Sand Point, Alaska 33 km 2023-07-16T06:48:22.606Z
|
7.2 98 km S of Sand Point, Alaska 33 km 2023-07-16T06:48:22.606Z
|
||||||
...
|
...
|
||||||
.LINK
|
.LINK
|
||||||
@ -16,22 +18,25 @@
|
|||||||
Author: Markus Fleschutz | License: CC0
|
Author: Markus Fleschutz | License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
|
param([float]$minMagnitude=5.5)
|
||||||
|
|
||||||
$Format="csv" # cap, csv, geojson, kml, kmlraw, quakeml, text, xml
|
$Format="csv" # cap, csv, geojson, kml, kmlraw, quakeml, text, xml
|
||||||
$MinMagnitude=5.7
|
|
||||||
$OrderBy="magnitude" # time, time-asc, magnitude, magnitude-asc
|
$OrderBy="magnitude" # time, time-asc, magnitude, magnitude-asc
|
||||||
|
|
||||||
function ListEarthquakes {
|
function ListEarthquakes {
|
||||||
Write-Progress "Loading data from earthquake.usgs.gov..."
|
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
|
$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) {
|
Write-Progress -completed "done."
|
||||||
[int]$Depth = $Quake.depth
|
|
||||||
New-Object PSObject -Property @{ Mag=$Quake.mag; Depth="$Depth km"; Location=$Quake.place; Time=$Quake.time }
|
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 }
|
||||||
}
|
}
|
||||||
Write-Progress -completed "Loading finished."
|
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
ListEarthquakes | Format-Table -property @{e='Mag';width=5},@{e='Location';width=42},@{e='Depth';width=12},Time
|
ListEarthquakes | Format-Table -property @{e='Mag';width=5},@{e='Location';width=42},@{e='Depth';width=12},'Time UTC'
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user