Skip to content

Access Solar Radio Spectrograph data from the Radio Solar Telescope Network (RSTN)

License

Notifications You must be signed in to change notification settings

lwa-project/solnet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

solnet

GHA

solnet is a Python package for accessing, processing, and visualizing Solar Radio Spectrograph (SRS) data from the Radio Solar Telescope Network (RSTN).

From NOAA:

The SRS detects spectral solar radio frequency emissions within the meter and decameter (tens of meters) region of the radio spectrum

Usage:

To look for data on Junary 10, 2025:

import solnet
sites = solnet.check_data_availability('2025-01-10')
print(f"Sites with data on January 10: {sites}")

Download the data from San Vito and save it to the local directory:

filename = solnet.download_data('2025-01-10', sites='San Vito', save_dir='.')

Load and plot the data:

srs = solnet.load_srs_data(filename)

import solnet.plot
from matplotlib import pyplot as plt
fig = solnet.plot.plot_srs(srs)
fig.tight_layout()
plt.show()

About

Access Solar Radio Spectrograph data from the Radio Solar Telescope Network (RSTN)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages