@@ -30,8 +30,8 @@ these collections:
30
30
...
31
31
APASS : {'Description': 'The APASS collection at the CADC', 'Bands': ['Optical', 'Infrared|Optical', '']}
32
32
BLAST : {'Description': 'The BLAST collection at the CADC', 'Bands': ['', 'Millimeter']}
33
- CFHT : {'Description': 'The CFHT collection at the CADC', 'Bands': ['Infrared|Optical', 'Infrared|Optical|UV', '', 'Infrared| Optical|UV|EUV|X-ray|Ga ', 'Optical', ' Infrared', 'X-ray|Gamma-ray ']}
34
- CFHTMEGAPIPE : {'Description': 'The CFHTMEGAPIPE collection at the CADC', 'Bands': ['', 'Infrared|Optical', 'Infrared', ' Optical']}
33
+ CFHT : {'Description': 'The CFHT collection at the CADC', 'Bands': ['Infrared|Optical', 'Infrared|Optical|UV', '', 'Optical', 'Infrared']}
34
+ CFHTMEGAPIPE : {'Description': 'The CFHTMEGAPIPE collection at the CADC', 'Bands': ['', 'Infrared|Optical', 'Optical']}
35
35
CFHTTERAPIX : {'Description': 'The CFHTTERAPIX collection at the CADC', 'Bands': ['Infrared|Optical', 'Optical', 'Infrared']}
36
36
CFHTWIRWOLF : {'Description': 'The CFHTWIRWOLF collection at the CADC', 'Bands': ['Infrared']}
37
37
CGPS : {'Description': 'The CGPS collection at the CADC', 'Bands': ['Infrared', 'Radio', 'Millimeter', '', 'Millimeter|Infrared']}
@@ -57,7 +57,7 @@ the URLs for downloading the corresponding data.
57
57
>>> from astroquery.cadc import Cadc
58
58
>>> cadc = Cadc()
59
59
>>> result = cadc.query_region(' 08h45m07.5s +54d18m00s' , collection = ' CFHT' )
60
- >>> print (result)
60
+ >>> print (result) # doctest: +IGNORE_OUTPUT
61
61
observationURI sequenceNumber ... maxLastModified2
62
62
...
63
63
----------------- -------------- ... -----------------------
@@ -98,8 +98,6 @@ auxiliary data (in this case preview files)
98
98
>>> from astroquery.cadc import Cadc
99
99
>>> cadc = Cadc()
100
100
>>> result = cadc.query_region(' 08h45m07.5s +54d18m00s' )
101
- >>> print (len (result))
102
- 3044
103
101
>>> urls = cadc.get_data_urls(result[result[' target_name' ] == ' Nr3491_1' ],
104
102
... include_auxiliaries= True )
105
103
>>> for url in urls:
@@ -127,7 +125,7 @@ the CADC metadata.
127
125
>>> result_m31 = cadc.query_name(' M31' )
128
126
>>>
129
127
>>> result = cadc.query_name(' Nr3491_1' )
130
- >>> print (result)
128
+ >>> print (result) # doctest: +IGNORE_OUTPUT
131
129
observationURI sequenceNumber ... maxLastModified2
132
130
...
133
131
----------------- -------------- ... -----------------------
@@ -147,7 +145,7 @@ area and resolve the cutout of a result.
147
145
>>> coords = ' 01h45m07.5s +23d18m00s'
148
146
>>> radius = 0.01 * u.deg
149
147
>>> images = cadc.get_images(coords, radius, collection = ' CFHT' )
150
- >>> images # doctest: +IGNORE_OUTPUT
148
+ >>> images # doctest: +IGNORE_OUTPUT
151
149
[<astropy.io.fits.hdu.image.PrimaryHDU object at 0x7f3805a06ef0>]
152
150
[<astropy.io.fits.hdu.image.PrimaryHDU object at 0x7f3805b23b38>]
153
151
@@ -312,6 +310,7 @@ To get a list of table objects:
312
310
caom2.distinct_proposal_pi
313
311
caom2.distinct_proposal_title
314
312
caom2.HarvestSkipURI
313
+ caom2.HarvestState
315
314
caom2.SIAv1
316
315
ivoa.ObsCore
317
316
ivoa.ObsFile
0 commit comments