@@ -25,7 +25,7 @@ Positional queries can be based on a sky position. Radius is an optional parame
25
25
>> > coord = coordinates.SkyCoord(210.80242917 , 54.34875 , unit = " deg" )
26
26
>> > data = Observations.query_region(coordinates = coord, radius = 0.3 * units.deg)
27
27
>> > print (data[0 :5 ])
28
-
28
+
29
29
exposure_time detector_roi_setting detector_welldepth_setting telescope ...
30
30
------------ - -------------------- -------------------------- ------------ ...
31
31
119.9986 Full Frame -- Gemini- North ...
@@ -60,14 +60,16 @@ Observation Criteria Queries
60
60
----------------------------
61
61
62
62
Additional search terms are available as optional arguments to the `~astroquery.gemini.ObservationsClass.query_criteria `
63
- call. These all have default values of None, in which case they will not be considered during the search.
63
+ call. These all have default values of None, in which case they will not be considered during the search. The one
64
+ exception is ``radius ``, which will be set to 0.3 degrees by default if either ``coordinates `` or ``objectname `` are
65
+ specified.
64
66
65
67
Some examples of available search fields are the instrument used, such as GMOS-N, the observation_type, such as BIAS,
66
68
and the program ID. For a complete list of available search fields, see
67
69
`~astroquery.gemini.ObservationsClass.query_criteria `
68
70
69
71
.. code-block :: python
70
-
72
+
71
73
>> > from astroquery.gemini import Observations
72
74
73
75
>> > data = Observations.query_criteria(instrument = ' GMOS-N' ,
@@ -83,7 +85,7 @@ and the program ID. For a complete list of available search fields, see
83
85
0.0 Full Frame -- Gemini- North True ...
84
86
0.0 Full Frame -- Gemini- North True ...
85
87
86
- In addition, the criteria query can accept additional parameters via the ``*rawqueryargs `` and ``**rawquerykwargs ``
88
+ In addition, the criteria query can accept additional parameters via the ``*rawqueryargs `` and ``**rawquerykwargs ``
87
89
optional parameters.
88
90
89
91
The ``orderby `` parameter can be used to pass the desired sort order.
@@ -111,14 +113,15 @@ Regular *args* search terms are sent down as part of the URL path. Any *kwargs*
111
113
key=value also in the URL path. You can infer what to pass the function by inspecting the URL after a search in the
112
114
Gemini website. This call also supports the ``orderby `` kwarg for requesting the sort order.
113
115
114
- This example is equivalent to doing a web search with
116
+ This example is equivalent to doing a web search with
115
117
`this example search <https://archive.gemini.edu/searchform/RAW/cols=CTOWEQ/notengineering/GMOS-N/PIname=Hirst/NotFail >`_ .
116
- Note that *NotFail *, *notengineering *, *RAW *, and *cols * are all sent automatically. Only the additional
118
+
119
+ Note that *NotFail *, *notengineering *, *RAW *, and *cols * are all sent automatically. Only the additional
117
120
terms need be passed into the method. If QA or engineering search terms are passed, those will replace
118
121
the *NotFail * or *notengineering * terms respectively.
119
122
120
123
.. code-block :: python
121
-
124
+
122
125
>> > from astroquery.gemini import Observations
123
126
124
127
>> > data = Observations.query_raw(' GMOS-N' , ' BIAS' , progid = ' GN-CAL20191122' )
@@ -137,7 +140,7 @@ Authenticated Sessions
137
140
----------------------
138
141
139
142
The Gemini module allows for authenticated sessions using your GOA account. This is the same account you login
140
- with on the GOA homepage at `<https://archive.gemini.edu/ >`__. The `astroquery.gemini.ObservationsClass.login `
143
+ with on the GOA homepage at `<https://archive.gemini.edu/ >`__. The `astroquery.gemini.ObservationsClass.login `
141
144
method returns `True ` if successful.
142
145
143
146
.. code-block :: python
@@ -167,4 +170,3 @@ Reference/API
167
170
168
171
.. automodapi :: astroquery.gemini
169
172
:no-inheritance-diagram:
170
-
0 commit comments