Created
September 18, 2014 13:05
-
-
Save gijzelaerr/b2dbb443bc4c7777f031 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE VIEW augmented_runningcatalog | |
| AS SELECT | |
| -- and finally construct the final table | |
| r.id, | |
| r.dataset, | |
| a.v_int as v_int, | |
| a.eta_int as eta_int, | |
| (e2.f_int / i.rms_max) as sigma_max, | |
| (e2.f_int / i.rms_min) as sigma_min | |
| FROM | |
| -- second get the peak flux per runcat and band | |
| (SELECT | |
| a.runcat as runcat_id, | |
| max(e.f_int) as max_flux | |
| FROM | |
| -- first get the maximum timestamps per runcat and band | |
| ( | |
| SELECT | |
| max(a.id) as assoc_id | |
| FROM | |
| assocxtrsource a | |
| JOIN runningcatalog as r ON a.runcat = r.id | |
| JOIN extractedsource as e on a.xtrsrc = e.id | |
| JOIN image as i ON e.image = i.id | |
| GROUP BY r.id, i.band | |
| ) as m -- m for moment | |
| JOIN assocxtrsource a ON a.id = m.assoc_id | |
| JOIN extractedsource as e ON a.xtrsrc = e.id | |
| JOIN image as i ON e.image = i.id | |
| GROUP BY | |
| runcat_id | |
| ) as p -- p for peak flux | |
| JOIN assocxtrsource a ON a.runcat = p.runcat_id | |
| JOIN extractedsource as e ON a.xtrsrc = e.id and e.f_int = p.max_flux | |
| JOIN runningcatalog as r ON r.id = p.runcat_id | |
| LEFT OUTER JOIN newsource as n on n.runcat = r.id | |
| -- we need to join these again to calculate sigma | |
| LEFT JOIN extractedsource as e2 ON e2.id = n.trigger_xtrsrc | |
| LEFT JOIN image as i ON i.id = n.previous_limits_image; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment