@@ -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 ...
@@ -61,15 +61,15 @@ Observation Criteria Queries
61
61
62
62
Additional search terms are available as optional arguments to the `~astroquery.gemini.ObservationsClass.query_criteria `
63
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
64
+ exception is `` radius `` , which will be set to 0.3 degrees by default if either `` coordinates `` or `` objectname ` ` are
65
65
specified.
66
66
67
67
Some examples of available search fields are the instrument used, such as GMOS-N, the observation_type, such as BIAS,
68
68
and the program ID. For a complete list of available search fields, see
69
69
`~astroquery.gemini.ObservationsClass.query_criteria `
70
70
71
71
.. code-block :: python
72
-
72
+
73
73
>> > from astroquery.gemini import Observations
74
74
75
75
>> > data = Observations.query_criteria(instrument = ' GMOS-N' ,
@@ -85,7 +85,7 @@ and the program ID. For a complete list of available search fields, see
85
85
0.0 Full Frame -- Gemini- North True ...
86
86
0.0 Full Frame -- Gemini- North True ...
87
87
88
- 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 ``
89
89
optional parameters.
90
90
91
91
The ``orderby `` parameter can be used to pass the desired sort order.
@@ -113,14 +113,15 @@ Regular *args* search terms are sent down as part of the URL path. Any *kwargs*
113
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
114
114
Gemini website. This call also supports the ``orderby `` kwarg for requesting the sort order.
115
115
116
- This example is equivalent to doing a web search with
116
+ This example is equivalent to doing a web search with
117
117
`this example search <https://archive.gemini.edu/searchform/RAW/cols=CTOWEQ/notengineering/GMOS-N/PIname=Hirst/NotFail >`_ .
118
- 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
119
120
terms need be passed into the method. If QA or engineering search terms are passed, those will replace
120
121
the *NotFail * or *notengineering * terms respectively.
121
122
122
123
.. code-block :: python
123
-
124
+
124
125
>> > from astroquery.gemini import Observations
125
126
126
127
>> > data = Observations.query_raw(' GMOS-N' , ' BIAS' , progid = ' GN-CAL20191122' )
@@ -139,7 +140,7 @@ Authenticated Sessions
139
140
----------------------
140
141
141
142
The Gemini module allows for authenticated sessions using your GOA account. This is the same account you login
142
- 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 `
143
144
method returns `True ` if successful.
144
145
145
146
.. code-block :: python
@@ -169,4 +170,3 @@ Reference/API
169
170
170
171
.. automodapi :: astroquery.gemini
171
172
:no-inheritance-diagram:
172
-
0 commit comments