diff --git a/src/jcb/observation_chronicle/observation_chronicle.py b/src/jcb/observation_chronicle/observation_chronicle.py index fb12d48..9f3a280 100644 --- a/src/jcb/observation_chronicle/observation_chronicle.py +++ b/src/jcb/observation_chronicle/observation_chronicle.py @@ -222,10 +222,10 @@ def get_satellite_variable(self, observer, variable_name_in): return ", ".join(str(element) for element in sat_simulated) elif variable_name_in == 'not_biascorrtd': not_bias_corrected = ", ".join(str(element) for element in channel_not_bias_corrected) - # Returns a number -999 if all channels are to be bias-corrected. It keeps UFO from + # Returns a number 99999 if all channels are to be bias-corrected. It keeps UFO from # skipping bias correction for any channels. if not_bias_corrected == "": - not_bias_corrected = "-999" + not_bias_corrected = "99999" return not_bias_corrected elif variable_name_in == 'biascorrtd': return ", ".join(str(element) for element in channel_bias_corrected)