Skip to content

Commit

Permalink
Plot image scale only for good files for #288
Browse files Browse the repository at this point in the history
  • Loading branch information
mgalloy committed Jul 26, 2024
1 parent 8b5015a commit a1f778f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/report/ucomp_mission_image_scale_plot.pro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
pro ucomp_mission_image_scale_plot, wave_region, db, run=run
compile_opt strictarr

query = 'select * from ucomp_eng where wave_region=''%s'' order by date_obs'
query = 'select ucomp_eng.date_obs, ucomp_eng.occltrid, ucomp_eng.image_scale from ucomp_eng inner join ucomp_file on ucomp_eng.file_name=ucomp_file.l0_file_name where ucomp_eng.wave_region = ''%s'' and ucomp_file.quality = 0 and ucomp_file.gbu = 0 order by ucomp_eng.date_obs'
;query = 'select * from ucomp_eng where wave_region=''%s'' order by date_obs'
data = db->query(query, wave_region, $
count=n_files, error=error, fields=fields, sql_statement=sql)

Expand Down

0 comments on commit a1f778f

Please sign in to comment.