Changes between Version 13 and Version 14 of PublicPages/CosmoRepo
- Timestamp:
- Apr 20, 2015 11:13:40 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PublicPages/CosmoRepo
v13 v14 52 52 === DECam Data === 53 53 54 Public DECam data not necessarily affiliated with the DECaLS project is obtained by first (repeatedly!)querying the NOAO portal with something like this:54 Public DECam data not necessarily affiliated with the DECaLS project is obtained by first querying the NOAO portal with something like this: 55 55 {{{ 56 56 SELECT md5sum, reference, dtpropid, surveyid, release_date, start_date, … … 59 59 reference AS archive_file, filesize, noao_id 60 60 FROM voi.siap 61 WHERE dtacqnam LIKE '%001 4____.fits.fz'61 WHERE dtacqnam LIKE '%001____.fits.fz' 62 62 AND proctype = 'Raw' 63 63 AND telescope = 'ct4m' 64 64 AND instrument = 'decam' 65 AND release_date < '2015-0 2-01'66 LIMIT 10000 ;65 AND release_date < '2015-04-01' 66 LIMIT 100000; 67 67 }}} 68 68 The resulting VOTable XML files are not actually valid, so they have to be fixed up before converting them to a FITS table.