Skip to content

Commit 2469d06

Browse files
authored
Merge pull request #81 from loumir/update_section_4.5
update sect. 4 & 5+ typo correction, harmonize table names
2 parents 63ce6a8 + 35083b7 commit 2469d06

File tree

3 files changed

+163
-185
lines changed

3 files changed

+163
-185
lines changed

Appendix.tex

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ \subsection{Use case - s\_resolution\_min}
2424

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

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

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

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

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

183-
184-
185183
\subsection{Use case - maximum angular scale selection}
186184
\textit{Any visibility dataset Within an arcec around FRB 121102 where maximum angular scale is larger than 1 minute .}\\ \\
187185
Show me all datasets satisfying:\\
@@ -190,7 +188,7 @@ \subsection{Use case - maximum angular scale selection}
190188
III. Position within 1 arcsec of 82.99458 + 33.14794
191189
\begin{verbatim}
192190
SELECT * FROM ivoa.obscore
193-
NATURAL JOIN ivoa.obscore-radio
191+
NATURAL JOIN ivoa.obscore_radio
194192
WHERE dataproduct_type = 'visibility'
195193
AND s_largest_angular_scale_max > 0.018
196194
AND CONTAINS(POINT(s_ra,s_dec),CIRCLE(82.99458, 33.14794,0.0003)) = 1))
@@ -207,7 +205,7 @@ \subsection{Use case - maximum angular scale selection with reasonable fidelity}
207205
V. Position within 1 arcsec of 82.99458 + 33.14794
208206
\begin{verbatim}
209207
SELECT * FROM ivoa.obscore
210-
NATURAL JOIN ivoa.obscore-radio
208+
NATURAL JOIN ivoa.obscore_radio
211209
WHERE dataproduct_type = 'visibilty'
212210
AND s_largest_angular_scale_max > 0.018
213211
AND uv_distribution_fill > 0.7
@@ -225,7 +223,7 @@ \subsection{Use case - time selection }
225223

226224
\begin{verbatim}
227225
SELECT * FROM ivoa.obscore
228-
NATURAL JOIN ivoa.obscore-radio
226+
NATURAL JOIN ivoa.obscore_radio
229227
WHERE instr_type = 'beamForming'
230228
AND dataproduct_type = 'timeseries'
231229
AND t_resolution < 0.1 AND
@@ -242,7 +240,7 @@ \subsection{Use case - instrument type and mode selection }
242240
IV. position inside 3 arcmin around 187.2779159404900 +02.0523882305500
243241
\begin{verbatim}
244242
SELECT * FROM ivoa.obscore
245-
NATURAL JOIN ivoa.obscore-radio
243+
NATURAL JOIN ivoa.obscore_radio
246244
WHERE instr_type = 'SD'
247245
AND scan_mode = 'raster'
248246
AND (target_name = '3C 273' OR
@@ -261,7 +259,7 @@ \subsection{Use case - instrument type and frequency selection }
261259

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

281279
\begin{verbatim}
282-
SELECT * FROM ivoa.obscore-radio
280+
SELECT * FROM ivoa.obscore_radio
283281
WHERE instr_type = 'interferometry'
284282
AND instr_tel_number > 40
285283
AND instr_tel_max_dist > 5000

0 commit comments

Comments
 (0)