forked from pohuigin/idl_objects
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vertigo_info__define.pro
48 lines (40 loc) · 1.24 KB
/
vertigo_info__define.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
; =========================================================================
;+
; Project : The General IDL VERsus TIme General Object (VerTiGO)
;
; Name : VERTIGO_INFO__DEFINE
;
; Purpose : Used by VERTIGO__DEFINE for dynamic data handling.
;
; Category : Ancillary Synoptic Objects
;
; Syntax : N/A
;
; Example :
;
; Notes :
;
; History : 18-AUG-2007 Written (My birthday!), Paul Higgins, (ARG/TCD)
; 14-OCT-2008 Changed object name from VERTIGO to VERTIGO, Paul Higgins, (ARG/TCD)
;
; Tutorial : Not yet. For now take a look at the configuration section of
; http://solarmonitor.org/objects/solmon
;
; Contact : P.A. Higgins: pohuigin {at} gmail {dot} com
; P. Gallagher: peter.gallagher {at} tcd {dot} ie
;-
; =========================================================================
;-------------------------------------------------------->
PRO VERTIGO_info__define
struct = { VERTIGO_info, $
data: fltarr(1024,1024), $
;--<< Map header variables. >>
ut: '', $
obs: '', $
instrument: '', $
filter: '', $
timerange: ['',''], $
header: strarr(2,13) $
}
END
;-------------------------------------------------------->