Skip to content

Commit 9b86c1e

Browse files
committed
docs fix: s/astroquery.xmm_newton/astroquery.esa.xmm_newton/
1 parent b9eaa72 commit 9b86c1e

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

docs/xmm_newton/xmm_newton.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
.. doctest-skip-all
22
3-
.. _astroquery.xmm_newton:
3+
.. _astroquery.esa.xmm_newton:
44

5-
************************************
6-
xmm_newton (`astroquery.xmm_newton`)
7-
************************************
5+
****************************************
6+
xmm_newton (`astroquery.esa.xmm_newton`)
7+
****************************************
88

99

1010
The X-ray Multi-Mirror Mission, XMM-Newton, is an ESA X-ray observatory launched on 10 December 1999.
@@ -25,10 +25,10 @@ Examples
2525

2626
.. code-block:: python
2727
28-
>>> from astroquery.xmm_newton import XMMNewton
28+
>>> from astroquery.esa.xmm_newton import XMMNewton
2929
>>>
3030
>>> XMMNewton.download_data('0505720401',level="PPS",extension="PDF",instname="M1",filename="result0505720401.tar")
31-
INFO: File result0505720401.tar downloaded to current directory [astroquery.xmm_newton.core]
31+
INFO: File result0505720401.tar downloaded to current directory [astroquery.esa.xmm_newton.core]
3232
3333
This will download all PPS files for the observation '0505720401' and instrument MOS1, with 'PDF' extension and
3434
it will store them in a tar called 'result0505720401.tar'. The parameters available are detailed in the API.
@@ -42,10 +42,10 @@ For more details of the parameters check the section 3.4 at:
4242

4343
.. code-block:: python
4444
45-
>>> from astroquery.xmm_newton import XMMNewton
45+
>>> from astroquery.esa.xmm_newton import XMMNewton
4646
>>>
4747
>>> XMMNewton.get_postcard('0505720401')
48-
INFO: File P0505720401EPX000OIMAGE8000.PNG downloaded to current directory [astroquery.xmm_newton.core]
48+
INFO: File P0505720401EPX000OIMAGE8000.PNG downloaded to current directory [astroquery.esa.xmm_newton.core]
4949
'P0505720401EPX000OIMAGE8000.PNG'
5050
5151
This will download the EPIC postcard for the observation '0505720401' and it will stored in a PNG called
@@ -60,7 +60,7 @@ Query Language (ADQL).
6060

6161
.. code-block:: python
6262
63-
>>> from astroquery.xmm_newton import XMMNewton
63+
>>> from astroquery.esa.xmm_newton import XMMNewton
6464
>>>
6565
>>> result = XMMNewton.query_xsa_tap("select top 10 * from v_public_observations", output_format='csv', output_file='results10.csv')
6666
>>> print(result)
@@ -86,7 +86,7 @@ stored in the file 'results10.csv'. The result of this query can be printed by d
8686

8787
.. code-block:: python
8888
89-
>>> from astroquery.xmm_newton import XMMNewton
89+
>>> from astroquery.esa.xmm_newton import XMMNewton
9090
>>>
9191
>>> XMMNewton.get_tables(True)
9292
INFO: Retrieving tables... [astroquery.utils.tap.core]
@@ -108,7 +108,7 @@ This will show the available tables in XSA TAP service in the XMM-Newton Science
108108

109109
.. code-block:: python
110110
111-
>>> from astroquery.xmm_newton import XMMNewton
111+
>>> from astroquery.esa.xmm_newton import XMMNewton
112112
>>>
113113
>>> XMMNewton.get_columns('public.v_all_observations')
114114
INFO: Retrieving tables... [astroquery.utils.tap.core]
@@ -125,5 +125,5 @@ This will show the column details of the table 'v_all_observations' in XSA TAP s
125125
Reference/API
126126
=============
127127

128-
.. automodapi:: astroquery.xmm_newton
129-
:no-inheritance-diagram:
128+
.. automodapi:: astroquery.esa.xmm_newton
129+
:no-inheritance-diagram:

0 commit comments

Comments
 (0)