Files
ImportExcel/Examples/Nasa/FireBalls.ps1
2018-07-05 16:14:56 -04:00

22 lines
519 B
PowerShell

try {. $PSScriptRoot\..\..\LoadPSD1.ps1} catch {}
$header = echo `
'Date/Time - Peak Brightness (UT)' `
'Latitude (Deg)' `
'Longitude (Deg)' `
'Altitude (km)' `
'Velocity (km/s)' `
'Velocity Components (km/s) vx' `
'Velocity Components (km/s) vy' `
'Velocity Components (km/s) vz' `
'Total Radiated Energy (J)' `
'Calculated Total Impact Energy (kt)'
$splat=@{
url='http://neo.jpl.nasa.gov/fireballs/'
index=5
Header=$header
FirstDataRow=1
}
Import-Html @splat