ColumbiaCMB / kid_readout

Code for the ROACH KID readout.
BSD 2-Clause "Simplified" License
4 stars 7 forks source link

Different nonexistence values in hpd_temps and starcryo_temps #12

Closed danielflanigan closed 8 years ago

danielflanigan commented 8 years ago

It looks like hpd_temps uses None to signal that a thermometer doesn't exist, while starcryo_temps uses nan. I'd like to standardize on one (I prefer None) but I don't understand this code or what might be relying on these values. @gitj Thoughts?

gitj commented 8 years ago

I prefer nan because when asking for multiple times, an array is returned, and an array of None's will be an object array which is not a good thing here. I went ahead and pushed this change.