Skip to content

Commit 7fd5005

Browse files
committed
Adding RCAM/TCAM radius to centerin CSV file for #288
1 parent 98db4b5 commit 7fd5005

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/report/ucomp_mission_image_scale_plot.pro

+7-2
Original file line numberDiff line numberDiff line change
@@ -133,20 +133,25 @@ pro ucomp_mission_image_scale_plot, wave_region, db, run=run
133133
openw, lun, output_filename, /get_lun
134134
; date/time, image scale, plate scale, occulter ID, occulter diameter [mm]
135135
printf, lun, ['date/time', $
136+
'Julian date', $
137+
'RCAM radius', $
138+
'TCAM radius', $
136139
'image scale', $
137140
'plate scale', $
138141
'occulter ID', $
139142
'occulter diameter [mm]'], $
140-
format='%s\t%s\t%s\t%s\t%s\t%s'
143+
format='%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s'
141144
for f = 0L, n_files - 1L do begin
142145
printf, lun, $
143146
(data.date_obs)[f], $
144147
jds[f], $
148+
(data.rcam_radius)[f], $
149+
(data.tcam_radius)[f], $
145150
image_scale[f], $
146151
plate_scale[f], $
147152
(data.occltrid)[f], $
148153
occulter_diameter[f], $
149-
format='%s\t%0.9f\t%0.5f\t%0.5f\t%s\t%0.3f'
154+
format='%s\t%0.9f\t%0.3f\t%0.3f\t%0.5f\t%0.5f\t%s\t%0.3f'
150155
endfor
151156
free_lun, lun
152157

0 commit comments

Comments
 (0)