You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't believe so. This is the relevant excerpt from SpecialPixel.h in the isis code base:
// 2-byte signed special pixel values
const short VALID_MIN2 = ((short)(-32752));
const short NULL2 = ((short)(-32768));
const short LOW_REPR_SAT2 = ((short)(-32767));
const short LOW_INSTR_SAT2 = ((short)(-32766));
const short HIGH_INSTR_SAT2 = ((short)(-32765));
const short HIGH_REPR_SAT2 = ((short)(-32764));
const short VALID_MAX2 = ((short) 32767);
Should the these high special pixels be positive?
The text was updated successfully, but these errors were encountered: