0 votes
66 views

Hi,

I'm trying to get DECam raw fits within a certain radius with SIA interface, but it seems that "Size" box doesn't work and a query uses default value. I tried few positions on the sky and a number of output files doesn't depend on the value in the "Size" box. Could you help me to find a way to get the fits for an area bigger then default 0.1 degree? Thanks!

by | 66 views

3 Answers

0 votes
Hi, could you please post an example query URL? Or, if you are using the web-based cutout tool, write back with what selections you use for every element?

Thanks!
by datalab (20.7k points)
0 votes
I was using web interface (https://datalab.noirlab.edu/sia.php) with the following selections:

A list of RA and DECin decimal degrees: 43.20 -66.50

Survey: Raw data only

Size: various values from 0.1 to 2

Filter: g
by
0 votes

The SIA query tool is meant to be used to get cutouts of the given size around the specified point, i.e. it is asking the question "which CCDs in the table contain this point?"  By varying the size parameter you are changing the size of the cutout to be generated (clipped to CCD boundaries) but the number of CCDs containing the query position will be the same unless/until new images are added to the database.  I have verified that in the archive image table there are only 15 raw g-band images containing this position.

If you instead you want to know how many CCDs are within a specified radius of a position you can query the image table using a the Query Interface for the TAP service with a query such as the below where the '2' in the q3c_radial_query() is the search radius in degrees.  Increasing this value will increase the number of images found.

Hope this helps, please let us know if you still have questions.

SELECT count(*)
FROM ivoa_nsa.siav1
WHERE prodtype='image' and calib_level=1 and  obs_bandpass='g'
      and 't'=q3c_radial_query(s_ra, s_dec, 43.20, -66.50, 2);
by datalab (20.7k points)

416 questions

434 answers

440 comments

636 users

Welcome to Data Lab Help Desk, where you can ask questions and receive answers from other members of the community.

Categories