@@ -10,12 +10,12 @@ Getting Started
10
10
This module can be used to query the Gemini Archive. Below are examples of querying the data with various
11
11
parameters.
12
12
13
+
13
14
Positional Queries
14
15
------------------
15
16
16
17
Positional queries can be based on a sky position. Radius is an optional parameter and the default is 0.3 degrees.
17
18
18
- .. code-block :: python
19
19
20
20
.. doctest-remote-data ::
21
21
@@ -30,15 +30,14 @@ Positional queries can be based on a sky position. Radius is an optional parame
30
30
119.9983 Full Frame ... 2008-09-25 54.376194395654
31
31
119.9986 Full Frame ... 2008-09-25 54.366916626746
32
32
119.9983 Full Frame ... 2008-09-25 54.274527402457
33
- 99.9983 Full Frame ... 2013-08-16 54.307561057825
33
+ 99.9983 Full Frame ... 2013-08-16 54.307561057825
34
34
35
35
36
36
Observation Name Queries
37
37
------------------------
38
38
39
39
You may also do a query by the name of the object you are interested in.
40
40
41
- .. code-block :: python
42
41
.. doctest-remote-data ::
43
42
44
43
>>> from astroquery.gemini import Observations
@@ -52,6 +51,7 @@ You may also do a query by the name of the object you are interested in.
52
51
49.9987 Full Frame ... 2013-08-28 54.346975563951
53
52
49.9989 Full Frame ... 2013-08-28 54.347048438693
54
53
54
+
55
55
Observation Criteria Queries
56
56
----------------------------
57
57
@@ -64,7 +64,6 @@ Some examples of available search fields are the instrument used, such as GMOS-N
64
64
and the program ID. For a complete list of available search fields, see
65
65
`~astroquery.gemini.ObservationsClass.query_criteria `
66
66
67
- .. code-block :: python
68
67
.. doctest-remote-data ::
69
68
70
69
>>> from astroquery.gemini import Observations
@@ -87,7 +86,6 @@ optional parameters.
87
86
88
87
The ``orderby `` parameter can be used to pass the desired sort order.
89
88
90
- .. code-block :: python
91
89
.. doctest-remote-data ::
92
90
93
91
>>> from astroquery.gemini import Observations
@@ -117,7 +115,6 @@ Note that *NotFail*, *notengineering*, *RAW*, and *cols* are all sent automatica
117
115
terms need be passed into the method. If QA or engineering search terms are passed, those will replace
118
116
the *NotFail * or *notengineering * terms respectively.
119
117
120
- .. code-block :: python
121
118
.. doctest-remote-data ::
122
119
123
120
>>> from astroquery.gemini import Observations
@@ -139,7 +136,6 @@ The Gemini module allows for authenticated sessions using your GOA account. Thi
139
136
with on the GOA homepage at `<https://archive.gemini.edu/ >`__. The `astroquery.gemini.ObservationsClass.login `
140
137
method returns `True ` if successful.
141
138
142
- .. code-block :: python
143
139
.. doctest-skip ::
144
140
145
141
>>> from astroquery.gemini import Observations
@@ -154,11 +150,10 @@ As a convenience, you can request file downloads directly from the Gemini module
154
150
URL and fetches the file. It will use any authenticated session you may have, so it will retrieve any
155
151
proprietary data you may be permissioned for.
156
152
157
- .. code-block :: python
158
- .. doctest-skip ::
153
+ .. doctest-remote-data ::
159
154
160
155
>>> from astroquery.gemini import Observations
161
- >>> Observations.get_file(" GS2020AQ319-10.fits" , download_dir = " /tmp" ) # doctest: +REMOTE_DATA
156
+ >>> Observations.get_file(" GS2020AQ319-10.fits" , download_dir = " /tmp" ) # doctest: +IGNORE_OUTPUT
162
157
163
158
164
159
Reference/API
0 commit comments