Hi,
I am using SparclClient to download DESI's stellar spectra, with the following code:
client = SparclClient()
out = ['sparcl_id', 'ra', 'dec', 'redshift', 'spectype', 'data_release', 'redshift_err']
ra_range = [0,360]
dec_range = [-90,90] # Just an example of downloading the all-sky spectra.
cons = {'spectype': ['STAR'], 'redshift': [0.0, 0.1], 'ra': ra_range, 'dec': dec_range}
found_spectra = client.find(outfields=out, constraints=cons, limit=99999)
However, no matter what I set the limit to (greater than 500, e.g., 99999 or None), it will always download at most 500 spectra. I am confused and want to know why. If this has to do with me needing to log in to the Data Lab, where do I go to register?
Thank you very much for your kind answers!