# Astronomy & Astrophysics Group
**Source**: https://www.astro.gla.ac.uk/?page_id=1432
**Parent**: https://www.astro.gla.ac.uk/?page_id=52
A [CALLISTO](http://www.e-callisto.org/) spectrometer has recently been installed at our Acre Rd Observatory and provides live observations of the Sun at radio frequencies between 45 and 870 MHz with 0.25 second cadence. The first light observations happened on October 10, 2012 and the dynamic spectra of Type III burst can be seen [here](http://www.astro.gla.ac.uk/?p=1426 "First light Glasgow observation").
The live data (below) is updated every 15 minutes between 07:15 UT and 17:15 UT.
All times in the graphs are UT. Solar radio data (and [all quick look images](http://www.astro.gla.ac.uk/users/eduard/callisto/)) from Glasgow CALLISTO spectrometer can be downloaded by either [ftp](ftp://ftp.astro.gla.ac.uk/callisto_glasgow/), [html](http://www.astro.gla.ac.uk/users/eduard/callisto/). The data from e-Callisto network (including Glasgow) can accessed via the [CALLISTO data browser](http://soleil.i4ds.ch/solarradio/callistoQuicklooks/).
To analyse and plot the data, use IDL based solar software [SSW](http://www.lmsal.com/solarsoft/ "Solar Soft") with ‘radio’ package required ([documentation is available here](http://www.exp-astro.phys.ethz.ch/astro1/Users/cmonstei/instrument/callisto/ecallisto/phoenix_howto.html "Callisto howto")). As an example, one can use this simple code
IDL> radio\_spectro\_fits\_read,’GLASGOW\_20121010\_103245\_59.fit’,data,time,freq\
IDL> loadct,1\
IDL> spectro\_plot,data,time,freq\
*; plots the raw data*\
IDL> spectro\_plot,data,time,freq,/xs,/ys,charsize=1.5,title=’Glasgow CALLISTO’,$\
ytitle=’Frequency [MHz]’,yr=[400,45],ytickv=[400,300,200,150,100,45],$\
yticks=5,yminor=4,xrange=’2012-oct-10 ‘+[’10:45:20′,’10:47:20’]\
*; plots a shorter frequency/time interval*\
IDL> data\_bg = constbacksub(data,/auto)\
*; subtracts background*\
IDL> spectro\_plot,data\_bg,time,freq,/xs,/ys,charsize=1.5,title=’Glasgow CALLISTO’,$\
ytitle=’Frequency [MHz]’,yr=[400,45],ytickv=[400,300,200,150,100,45],$\
yticks=5,yminor=4,xrange=’2012-oct-10 ‘+[’10:45:20′,’10:47:20’]\
*; plots bg subtracted data* \
IDL> x2jpeg,’Glasgow\_1st\_light.jpg’\
*; saves jpeg graph*