Preamble (please read)

TableOfContents

Determining which data you want

I need to browse through some data before I can decide what data I'd like to request.

I'd like a more detailed look instead of just a "browse."

I'm looking for a specific feature, event or phenomenon but I haven't determined the date/times of the images I need.

I know the start time and end time of the event or phenomenon I'd like to study, but I don't know which wavelength(s).

Accessing the data

I want images and/or a movie, and I don't need the full science data files.

I need FITS data files, and I think I know the time range and wavelengths of the images I want.

I need FITS data files, I know the time range and wavelengths of the images I want, but the available data volume is overwhelming. Case 1: Using subfields/cutouts

I need FITS data files, I know the time range and wavelengths of the images I want, but the available volume is overwhelming. Case 2: Decreasing the temporal or spatial resolution

  IDL> searchfile = vso_search('2010-jul-20 14:00','2010-jul-20 14:10', instr='aia', wave='304')
  Records Returned : JSOC : 50/50
Records Returned : JSOC : 7/7

  IDL> searchfile = vso_search('2010-jul-20 14:00','2010-jul-20 14:10', instr='aia', wave='304', pixel=4096)
  Records Returned : JSOC : 50/50
  IDL> searchfile = vso_search('2010-jul-20 14:00','2010-jul-20 14:10', instr='aia', wave='304', pixel=1024)
  Records Returned : JSOC : 7/7

  IDL> searchfile = vso_search('2010-jul-20 14:00','2010-jul-20 14:10', instr='aia', wave='304', pixel=4096, sample=180)  
  Records Returned : JSOC : 4/4

  IDL> getfile = vso_get(searchfile(6),filelist=filelist)
  VSO_GET: This will download 1 file(s)
  1 : http://vso.tuc.noao.edu/cgi-bin/drms_test/drms_export.cgi?series=aia_synoptic2;record=304_11763447-11763447
  % RDWRT_BUFF: Please wait. Downloading...
  % File: /cgi-bin/drms_test/drms_export.cgi?series=aia_synoptic2;record=304_11763447-11763447
  % Size: 4210560 bytes
  % From: vso.tuc.noao.edu
  % To: /Users/barbara/data
  % HTTP::COPY: 4210560 bytes of 4210560 total bytes copied in     2.73 seconds
  % HTTP::COPY: Wrote 4210560 bytes to file /Users/barbara/data/aia_test.synoptic2.304A_2010-07-20T14_10_02.12Z.image_lev1p5.fits
  Downloading completed

  IDL> print, filelist(0)
  /Users/barbara/data/aia_test.synoptic2.304A_2010-07-20T14_10_02.12Z.image_lev1p5.fits

Analyzing the data

Well, well, well. So what have we here?

What analysis tools are available?

Section III.c: What are the limitations of the data?

Section III.d: I'm ready to publish. Who do I acknowledge?

Nothing is required, but especially for early papers it would be nice to acknowledge data provider(s) and any AIA team members who helped.

Appendix I: IDL and the SolarSoft software tree

Appendix I.a: What is IDL?

In this guide, we assume that all manipulation of FITS files will be done using IDL software and SolarSoft software packages. IDL stands for Interactive Data Language, a data analysis programming language with a syntax descended from Fortran. The software is sold by ITT Visual Information Solutions.

Appendix I.b: What is SolarSoft?

Appendix I.c: I have IDL, but I don't have the SolarSoft software tree on my computer.

Appendix I.d: I have the SolarSoft software tree on my computer, but I'm not sure if I have the appropriate software packages installed.

Appendix II: Identifying and retrieving data using the Virtual Solar Observatory's IDL interface

Appendix II.a: Searching the VSO catalog using vso_search.pro

AIA data can be accessed in a variety of ways. One point of access is provided by the Virtual Solar Observatory, or VSO. The VSO's search tools provide the user with a great deal of flexibility in accessing solar data. There is a search interface on the VSO website, but there is also an IDL interface provided within the SolarSoft library that allows the user to integrate their data search, retrieval, and analysis efforts.

Please note that VSO's IDL interface programs, such as vso_search.pro and vso_get.pro, are updated on a regular basis. The examples in this guide do not reflect the full range of capabilities of the program, and to be sure that you're aware of all that has been changed or added you should check the program documentation directly.

We'll proceed with a series of examples that the user can try on their own computer. We'll start by searching the catalog with vso_search.pro, and the query's result can be passed to vso_get.pro to retrieve the data to your local directory.

IDL input code is shown next to the IDL> prompt, and the text response to the input (if any) is shown below the command line. We'll start by defining a time range to work with:

  IDL> time1 = '2010-jul-17 00:00'
  IDL> time2 = '2010-jul-17 01:00'

Example 1. Find all of the AIA images available for a given date range:

Appendix II.b: Retrieving data with vso_get.pro

Email: MailTo(you AT SPAMFREE example DOT com)

...