Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 14 additions & 16 deletions Appendix.tex
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ \subsection{Use case - s\_resolution\_min}

\begin{verbatim}
SELECT * FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE
s_resolution_min > 0.017
AND (target_name = 'Virgo A' OR
Expand All @@ -42,7 +42,7 @@ \subsection{Use case - s\_resolution\_max}

\begin{verbatim}
SELECT * FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE s_resolution_max < 0.017
AND
(target_name = 'IC443' OR
Expand All @@ -59,7 +59,7 @@ \subsection{Use case - s\_fov\_min - large field of views}
II Target name = Abell 194 or position inside 15 arcmin from 21.5054167, -1.3672221 \\
\begin{verbatim}
SELECT * FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE s_fov_min > 0.8 AND
(target_name = 'Abell 194' OR
CONTAINS(POINT(s_ra,s_dec),CIRCLE(21.5054167,-1.3672221,0.25)) = 1))
Expand All @@ -74,7 +74,7 @@ \subsection{Use case - s\_fov\_min - extended target completly included}
II. The circle defined by the minimum FOV of the dataset fully contains the circle delimiting Pictor A. \\
\begin{verbatim}
SELECT * FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE target_name = 'Pictor A' AND
CONTAINS(CIRCLE(79.9571789, -45.7788479,(8/60)/2),
CIRCLE(s_ra, s_dec, s_fov_min/2)) = 1)
Expand All @@ -92,7 +92,7 @@ \subsection{Use case - dataproduct\_type}

\begin{verbatim}
SELECT * FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE obs_collection EQ 'INAF-Medicina, single dish'
AND (em_min >=20000 AND em_max <= 21000)
AND (dataproduct_type EQ 'spatial profile' OR scan_mode LIKE "*map*")
Expand All @@ -112,7 +112,7 @@ \subsection{Use case - f\_resolution, frequency ranges}
\begin{verbatim}
SELECT *, 299792458 / em_max as f_min, 299792458 / em_min as f_max
FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE dataproduct_type = 'cube' AND
f_resolution < 1000000 AND
299792458 / em_max > 1.0 e+9 AND
Expand Down Expand Up @@ -145,7 +145,7 @@ \subsection{Use case - high resolution data around FRB targets }
\textit{Give me high-resolution data on possible persistent radio sources within an arc second of FRB 121102:}

\begin{verbatim}
SELECT * FROM ivoa.obscore NATURAL JOIN ivoa.obscore-radio
SELECT * FROM ivoa.obscore NATURAL JOIN ivoa.obscore_radio
WHERE CONTAINS(POINT(s_ra,s_dec),CIRCLE(82.99458,33.14794,0.0003)) = 1
AND s_resolution_max < 0.001
\end{verbatim}
Expand All @@ -157,7 +157,7 @@ \subsection{Use case - reasonable fidelity}

\begin{verbatim}
SELECT * FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE CONTAINS(POINT(s_ra,s_dec),CIRCLE(24.4212500,33.1588889,0.003)) = 1
AND s_largest_angular_scale > 0.018
AND uv_distribution_fill > 0.2
Expand All @@ -180,8 +180,6 @@ \subsection{ use case - visibility data product and target object selection }
AND target_name = 'Fornax cluster'
\end{verbatim}



\subsection{Use case - maximum angular scale selection}
\textit{Any visibility dataset Within an arcec around FRB 121102 where maximum angular scale is larger than 1 minute .}\\ \\
Show me all datasets satisfying:\\
Expand All @@ -190,7 +188,7 @@ \subsection{Use case - maximum angular scale selection}
III. Position within 1 arcsec of 82.99458 + 33.14794
\begin{verbatim}
SELECT * FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE dataproduct_type = 'visibility'
AND s_largest_angular_scale_max > 0.018
AND CONTAINS(POINT(s_ra,s_dec),CIRCLE(82.99458, 33.14794,0.0003)) = 1))
Expand All @@ -207,7 +205,7 @@ \subsection{Use case - maximum angular scale selection with reasonable fidelity}
V. Position within 1 arcsec of 82.99458 + 33.14794
\begin{verbatim}
SELECT * FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE dataproduct_type = 'visibilty'
AND s_largest_angular_scale_max > 0.018
AND uv_distribution_fill > 0.7
Expand All @@ -225,7 +223,7 @@ \subsection{Use case - time selection }

\begin{verbatim}
SELECT * FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE instr_type = 'beamForming'
AND dataproduct_type = 'timeseries'
AND t_resolution < 0.1 AND
Expand All @@ -242,7 +240,7 @@ \subsection{Use case - instrument type and mode selection }
IV. position inside 3 arcmin around 187.2779159404900 +02.0523882305500
\begin{verbatim}
SELECT * FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE instr_type = 'SD'
AND scan_mode = 'raster'
AND (target_name = '3C 273' OR
Expand All @@ -261,7 +259,7 @@ \subsection{Use case - instrument type and frequency selection }

\begin{verbatim}
SELECT * FROM ivoa.obscore
NATURAL JOIN ivoa.obscore-radio
NATURAL JOIN ivoa.obscore_radio
WHERE (instr_type = 'SD' OR
instr_type = 'beamForming')
AND 299792458 / em_max > 500
Expand All @@ -279,7 +277,7 @@ \subsection{Use case - instrument parameters selection }
III. antenna maximum distance in meters > 5000 \\

\begin{verbatim}
SELECT * FROM ivoa.obscore-radio
SELECT * FROM ivoa.obscore_radio
WHERE instr_type = 'interferometry'
AND instr_tel_number > 40
AND instr_tel_max_dist > 5000
Expand Down
Loading