@@ -23,7 +23,7 @@ Heasarc Main Interface
23
23
24
24
Query a Catalog
25
25
---------------
26
- The basic use case is one where we wants to query a catalog from some position in the sky.
26
+ The basic use case is one where we want to query a catalog from some position in the sky.
27
27
In this example, we query the NuSTAR master catalog ``numaster `` for all observations
28
28
of the AGN ``NGC 3783 ``. We use `~astropy.coordinates.SkyCoord ` to obtain the coordinates
29
29
and then pass them to `~astroquery.heasarc.HeasarcClass.query_region `:
@@ -200,16 +200,16 @@ the local path to the data on Sciserver. The last gives the S3 URI to the data i
200
200
You can specify where the data are to be downloaded using the ``location `` parameter.
201
201
202
202
To download the data, you can pass ``links `` table to `~astroquery.heasarc.HeasarcClass.download_data `,
203
- specifying from where you want the data to fetched by specifying the ``host `` parameter. By default,
203
+ specifying from where you want the data to be fetched by specifying the ``host `` parameter. By default,
204
204
the data is fetched from the main HEASARC servers.
205
- The recommendation is to use different hosts depending on where you can is running:
205
+ The recommendation is to use different hosts depending on where your code is running:
206
206
* ``host='sciserver' ``: Use this option if you running you analysis on Sciserver. Because
207
207
all the archive can be mounted locally there, `~astroquery.heasarc.HeasarcClass.download_data `
208
208
will only copy the relevant data.
209
209
* ``host='aws' ``: Use this option if you are running the analysis in Amazon Web Services (AWS).
210
210
Data will be downloaded from AWS S3 storage.
211
211
* ``host='heasarc' ``: Use this option for other cases. This is the classical and most general option.
212
- In this case, the requested data will be tarred and downloaded as a single file called heasarc-data.tar
212
+ In this case, the requested data will be tarred and downloaded as a single file called `` heasarc-data.tar ``
213
213
before being untarred.
214
214
215
215
Advanced Queries
0 commit comments