1
+ .. doctest-skip-all
2
+
1
3
.. _astroquery.nasa_exoplanet_archive :
2
4
3
5
************************************************************
@@ -25,7 +27,7 @@ The `~astroquery.nasa_exoplanet_archive.NasaExoplanetArchiveClass.query_object`
25
27
For example, the following query searches the ``ps `` table of confirmed exoplanets for information about the planet K2-18 b.
26
28
27
29
.. code-block :: python
28
- .. doctest-remote-data ::
30
+
29
31
>> > from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
30
32
>> > NasaExoplanetArchive.query_object(" K2-18 b" )
31
33
< QTable masked= True length= 11 >
@@ -49,7 +51,6 @@ For example, the following query searches the ``ps`` table of confirmed exoplane
49
51
Similarly, cone searches can be executed using the `~astroquery.nasa_exoplanet_archive.NasaExoplanetArchiveClass.query_region ` method:
50
52
51
53
.. code-block :: python
52
- .. doctest-remote-data ::
53
54
54
55
>> > import astropy.units as u
55
56
>> > from astropy.coordinates import SkyCoord
@@ -70,7 +71,6 @@ The most general queries can be performed using the `~astroquery.nasa_exoplanet_
70
71
For example, a full table can be queried as follows:
71
72
72
73
.. code-block :: python
73
- .. doctest-remote-data ::
74
74
75
75
>> > from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
76
76
>> > NasaExoplanetArchive.query_criteria(table = " cumulative" , select = " *" )
@@ -98,7 +98,6 @@ In this section, we demonstrate
98
98
1. The number of confirmed planets discovered by TESS:
99
99
100
100
.. code-block :: python
101
- .. doctest-remote-data ::
102
101
103
102
>> > from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
104
103
>> > NasaExoplanetArchive.query_criteria(table = " pscomppars" , select = " count(*)" ,
@@ -113,7 +112,6 @@ In this section, we demonstrate
113
112
2. The list of confirmed planets discovered by TESS and their host star coordinates:
114
113
115
114
.. code-block :: python
116
- .. doctest-remote-data ::
117
115
118
116
>> > from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
119
117
>> > NasaExoplanetArchive.query_criteria(table = " pscomppars" , select = " pl_name,ra,dec" ,
@@ -135,7 +133,6 @@ In this section, we demonstrate
135
133
3. The list of confirmed planets discovered using microlensing that have data available in the archive:
136
134
137
135
.. code-block :: python
138
- .. doctest-remote-data ::
139
136
140
137
>> > from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
141
138
>> > NasaExoplanetArchive.query_criteria(
@@ -159,7 +156,6 @@ In this section, we demonstrate
159
156
4. The list of confirmed planets where the host star name starts with "Kepler" using a *wildcard search *:
160
157
161
158
.. code-block :: python
162
- .. doctest-remote-data ::
163
159
164
160
>> > from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
165
161
>> > NasaExoplanetArchive.query_criteria(
@@ -186,7 +182,6 @@ In this section, we demonstrate
186
182
5. The Kepler Objects of Interest that were vetted more recently than January 24, 2015 using a *date search *:
187
183
188
184
.. code-block :: python
189
- .. doctest-remote-data ::
190
185
191
186
>> > from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
192
187
>> > NasaExoplanetArchive.query_criteria(
0 commit comments