Changes between Version 12 and Version 13 of PublicPages/CosmoRepo


Ignore:
Timestamp:
Feb 7, 2015 8:52:50 AM (9 years ago)
Author:
Benjamin Alan Weaver
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PublicPages/CosmoRepo

    v12 v13  
    5252=== DECam Data ===
    5353
    54 Public DECam data not necessarily affiliated with the DECaLS project is obtained by first querying the NOAO portal with something like this.
     54Public DECam data not necessarily affiliated with the DECaLS project is obtained by first (repeatedly!) querying the NOAO portal with something like this:
    5555{{{
    56 SELECT md5sum, reference, dtpropid, surveyid, release_date, start_date, date_obs, dtpi, ra, dec, telescope, instrument, filter, exposure, obstype, obsmode, proctype, prodtype, seeing, depth, dtacqnam, reference AS archive_file, filesize, noao_id FROM voi.siap WHERE (proctype = 'Raw') AND (telescope = 'ct4m' AND instrument = 'decam') AND release_date < '2014-09-17';
     56SELECT md5sum, reference, dtpropid, surveyid, release_date, start_date,
     57    date_obs, dtpi, ra, dec, telescope, instrument, filter, exposure,
     58    obstype, obsmode, proctype, prodtype, seeing, depth, dtacqnam,
     59    reference AS archive_file, filesize, noao_id
     60FROM voi.siap
     61WHERE dtacqnam LIKE '%0014____.fits.fz'
     62AND proctype = 'Raw'
     63AND telescope = 'ct4m'
     64AND instrument = 'decam'
     65AND release_date < '2015-02-01'
     66LIMIT 10000;
    5767}}}
    5868The resulting VOTable XML files are not actually valid, so they have to be fixed up before converting them to a FITS table.