Added Scripts for Radio-Weather

This commit is contained in:
[Harper Innes]
2023-10-06 14:59:15 +11:00
parent f0e52eadd3
commit d559726380
9 changed files with 183 additions and 0 deletions

6
scripts/coronal-holes.sh Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
mkdir /tmp/$(date +%Y%m%d_%H%M)_Coronal-Holes
cd /tmp/$(date +%Y%m%d_%H%M)_Coronal-Holes
wget https://sdo.gsfc.nasa.gov/assets/img/latest/latest_1024_0193.jpg
display latest_1024_0193.jpg &
exit 0

6
scripts/foF2.sh Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
mkdir /tmp/$(date +%Y%m%d_%H%M)_foF2
cd /tmp/$(date +%Y%m%d_%H%M)_foF2
wget https://prop.kc2g.com/renders/current/fof2-normal-now.svg
display fof2-normal-now.svg &
exit 0

6
scripts/global-drap.sh Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
mkdir /tmp/$(date +%Y%m%d_%H%M)_Global_Drap
cd /tmp/$(date +%Y%m%d_%H%M)_Global_Drap
wget https://services.swpc.noaa.gov/images/animations/d-rap/global/d-rap/latest.png
display latest.png &
exit 0

6
scripts/muf.sh Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
mkdir /tmp/$(date +%Y%m%d_%H%M)_muf
cd /tmp/$(date +%Y%m%d_%H%M)_muf
wget https://prop.kc2g.com/renders/current/mufd-normal-now.svg
display mufd-normal-now.svg &
exit 0

6
scripts/north-pole-drap.sh Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
mkdir /tmp/$(date +%Y%m%d_%H%M)_North_Pole
cd /tmp/$(date +%Y%m%d_%H%M)_North_Pole
wget https://services.swpc.noaa.gov/images/animations/d-rap/north-pole/d-rap/latest.png
display latest.png &
exit 0

6
scripts/solar-flares.sh Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
mkdir /tmp/$(date +%Y%m%d_%H%M)_Solar-Flares
cd /tmp/$(date +%Y%m%d_%H%M)_Solar-Flares
wget https://sdo.gsfc.nasa.gov/assets/img/latest/latest_1024_0131.jpg
display latest_1024_0131.jpg &
exit 0

7
scripts/south-pole-drap.sh Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
mkdir /tmp/$(date +%Y%m%d_%H%M)_South_Pole
cd /tmp/$(date +%Y%m%d_%H%M)_South_Pole
wget https://services.swpc.noaa.gov/images/animations/d-rap/south-pole/d-rap/latest.png
display latest.png &
exit 0

View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
mkdir /tmp/$(date +%Y%m%d_%H%M)_Sunspot-Regions
cd /tmp/$(date +%Y%m%d_%H%M)_Sunspot-Regions
wget -U "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" "https://www.spaceweatherlive.com/images/SDO/SDO_HMIIF_1024.jpg"
display SDO_HMIIF_1024.jpg &
exit 0