mirror of
https://github.com/dfinke/ImportExcel.git
synced 2026-01-07 19:13:43 +00:00
14 lines
407 B
PowerShell
14 lines
407 B
PowerShell
$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)'
|
|
|
|
Import-Html http://neo.jpl.nasa.gov/fireballs/ 5 -Header $header
|