function norh_get_info,index ;+ ; NAME: ; norh_get_info ; ; PURPOSE: ; Return the info array ; ; CALLING SEQUENCE: ; info=norh_get_info(index) ; ; INPUTS: ; index: index structure ; ; HISTORY: ; Writtern 1998-05-29 TY ;- mx=n_elements(index) out=strarr(mx) for m=0,mx-1 do begin ; out_el = strtrim(string(m),2)+' '+fmt_tim(index(m),/msec) $ ; +' '+norh_gt_freq(index(m))+' '+norh_gt_polariz(index(m)) out_el = fmt_tim(index(m),/msec) $ +' '+norh_gt_freq(index(m))+' '+norh_gt_polariz(index(m)) out(m) = out_el endfor return,out end