I am trying to download JWST data from MAST using specific RA and dec coords, but I am getting the same results no matter what I put in for the coords.
print("Number of results:", Observations.query_criteria_count(filters='F090W',
s_dec=dec,
s_ra=RA,
intentType="science",
instrument_name='NIRCAM/IMAGE',
dataproduct_type='IMAGE',
obs_collection='JWST',
dataRights="public",
calib_level=3))
This gives 84 results no matter what and they are all the same. My RA and dec are input as floats, but even if I put a string into the function it doesn’t raise any errors or change the output. Any ideas why this might be?