Пример #1
0
def show_latest_l0cs_goes_data():
    """Download and plot the latest EVE GOES proxy data in a standard GOES plot.

    Parameters
    ----------
    None : none

    Returns
    -------
    None : none

    See Also
    --------

    Examples
    --------
    >>> import sunpy.instr.sdoeve as eve
    >>> eve.show_latest_l0cs_goes_data()
    
    Reference
    ---------
    | 

    """
    from sunpy.instr.goes import show as goes_show

    data = get_latest_l0cs_goes_data()

    goes_show(data[0], data[1], data[2], title="EVE GOES Proxy Xray Flux (1 minute data)")
Пример #2
0
def show_latest_l0cs_goes_data():
    """Plot the latest EVE GOES proxy data in a standard GOES plot."""
    from sunpy.instr.goes import show as goes_show
    
    data = get_latest_l0cs_goes_data()
    
    goes_show(data[0], data[1], data[2], 
              title = 'EVE GOES Proxy Xray Flux (1 minute data)')