You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<INFO name="QUERY" value="SELECT
 distinct asa_science.project_code AS "Project code",
asa_science.source_name AS "Source name",
asa_science.ra AS "RA",
asa_science.dec AS "Dec",
asa_science.band AS "Band",
asa_science.frequency_resolution AS "Frequency resolution",
asa_science.int_time AS "Integration",
to_char(dp_delivery_status.release_date, 'YYYY-MM-DD') AS "Release date",
asa_science.frequency_support AS "Frequency support",
asa_science.velocity_resolution AS "Velocity resolution",
asa_science.pol_products AS "Pol products",
to_char(asa_science.start_date, 'YYYY-MM-DD HH24:MI:SS') AS "Observation date",
asa_project.pi_name AS "PI name",
asa_science.pwv AS "PWV",
asa_science.member_ouss_id as "Member ous id",
asa_science.asdm_uid AS "Asdm uid",
asa_project.title AS "Project title",
asa_project.type AS "Project type",
asa_science.scan_intent AS "Scan intent"
 FROM ALMA.asa_science 
 inner join ALMA.aqua_execblock on asa_science.asdm_uid = aqua_execblock.execblockuid
 inner join ALMA.asa_project on asa_science.project_code = asa_project.code
 left outer join ALMA.dp_delivery_asdm_ous on asa_science.asdm_uid = dp_delivery_asdm_ous.asdm_uid
 left outer join ALMA.dp_delivery_status on dp_delivery_asdm_ous.deliverable_name = dp_delivery_status.delivery_id
WHERE (1=1)
 AND (aqua_execblock.qa0status = 'Pass' OR aqua_execblock.qa0status = 'SemiPass')
 AND (dp_delivery_status.qa2_passed is null or dp_delivery_status.qa2_passed = 'Y')
 AND lower(project_code) not like '%.csv'
 AND ( DEC BETWEEN -50.4679 AND -48.4679
 AND RA BETWEEN 194.82487587885976 AND 197.90244912114025
 AND (asin(sqrt((-0.623549 - cx) * (-0.623549 - cx) + (-0.183091 - cy) * (-0.183091 - cy) + (-0.760042 - cz) * (-0.760042 - cz)) / 2.0) < 0.008727))
 AND (lower(ASA_SCIENCE.scan_intent) LIKE '%target%')
 AND (dp_delivery_status.release_date < to_date('2015-03-25', 'YYYY-mm-dd'))
 AND (lower(ASA_SCIENCE.project_code) LIKE '2011.0.00121.s')
 ORDER BY "Release date" asc" />
<DESCRIPTION>Name of the source as registered in the ASDM. Partial matches through wildcards (?, *), and boolean OR expressions ("|"), can be used.</DESCRIPTION>
0 commit comments