mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
22 lines
519 B
PowerShell
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 |