Reading DKIST Data with IDL

This document explains how to use IDL to read DKIST data. It also provides a standalone version of the IDL codes, extracted from SolarSoft suite to read DKIST data. It provides the new code READ_DKIST.PRO, which will work with both ViSP and VBI data.

Any questions should be sent to Alisdair Davey.


Standalone IDL Code to Read DKIST Data

Note this version of the IDL code are designed to be run standalone only. If you have SSW installed and you have run the SSW startup, then the codes here will likely not work. A version of READ_DKIST.PRO to run under SSW is in the process of being created.

IDL gzipped tarball attached to this document. Extract the archive (gunzip and tar -xvf) and it will create a set of IDL files needed to read DKIST data under the directory dkist_idl. e.g.

# alisdair% gunzip dkist_idl_latest.tar.gz # alisdair% tar xvf dkist_idl_latest.tar x dkist_idl/ x dkist_idl/strn.pro x dkist_idl/chk_dir.pro x dkist_idl/sxpar.pro x dkist_idl/strspecial.pro x dkist_idl/ut_diff.pro x dkist_idl/valid_num.pro x dkist_idl/fxpar.pro etc ... [ALISDAIRs-MacBook-Pro:~] alisdair% ls -ld dkist_idl drwxr-xr-x 184 alisdair staff 5888 Apr 17 15:46 dkist_idl

This tarball also contains a binaries directory taken from SolarSoft which contains the binaries needed to decompress RICE compressed images.

To begin, download the the gzipped tar file attached to this document or from here. Gunzip the file and then run tar xvf on the dkist_idl.tar tarball. This will place all files in a dkist_idl directory. Follow the directions below to run the code from this directory. For ease of use, you may want to add the path to the files in you .idl_startup file.

# defsysv,'!path',expand_path('+/Users/alisdair/DKIST/IDL/StandAlone/dkist_idl')+':'+!path

To make this work you will need to first set one environment variable:

In csh/tcsh 

# setenv SSW_ONTOLOGY PATH_TO_DKIST_IDL_DIRECTORY e.g. # setenv SSW_ONTOLOGY /Users/alisdair/DKIST/dkist_idl

or in bash

Then for ViSP data

etc...

You are strongly recommended to use the /UNCOMP_DELETE flag when reading DKIST data.  

Similarly, for VBI data

 etc.

To make READ_DKIST working with the VBI data you will need to specify the /USE_SHARED_LIB option.

 

READ_DKIST is based upon READ_SDO with SDO specific features removed. Additional tidying up to make the code more DKIST instrument specific is ongoing.

Reading DKIST Data in SolarSoft

A version of READ_DKIST.PRO to run under SSW is being created. Note that if you have SolarSoft already installed, the READ_SDO.PRO code should be able to read in DKIST data albeit not cleanly.