User’s Guide

User's guide offers guidelines that facilitate the initial use of SWPY, making it easier for users to get started.

SWPy

The SWPY package provides users with the ability to access and utilize space environment data provided by the Korea Astronomy and Space Science Institute (KASI).


Module Requirement

To utilize the SWPy module, the following modules are required:

import os 
import io 
import glob 
import astropy 
import zipfile 
import textwrap 
import matplotlib.dates 
import matplotlib.pyplot 
import matplotlib.ticker 
from datetime import datetime

SWPy Request

To search and download data information from SWPy, use request.

from swpy.swds.request import data_info, search, Downloader 

     * Additionally, to prevent issues, please avoid using  '*'  for importing.


SWPy Dataset

To read and plot data from SWPy, use dataset.

from swpy.swds.dataset.utilities import Processor, data_local
from swpy.swds.dataset.utilities import BasePlot
from swpy.swds.dataset.goes import goes

  'ace' or 'discovr' can be input istead of 'goes'

  Detailed usage of Request and Dataset is provided in the Example.