Hi, I am trying to download Sentinel5P data but I noticed the values for layers AER_AI_354_388 and AER_AI_340_380 are outside the normal range specified here. It is reported that the minimum value for these layers is -1 but I often encounter values lower than this threshold. I am downloading the data using Python SDK in this way
request = SentinelHubRequest(
evalscript=evalscript,
input_data=[
SentinelHubRequest.input_data(
data_collection=DataCollection.SENTINEL5P,
time_interval=(ts, ts),
mosaicking_order=MosaickingOrder.MOST_RECENT,
upsampling="BICUBIC"
)
],
responses=[SentinelHubRequest.output_response("default", MimeType.TIFF)],
bbox=city_bbox,
size=city_size,
config=config,
)
img = request.get_data()[0]
where evalscript is the following
function setup() {
return {
input: [{
bands: ["AER_AI_354_388", "dataMask"],
}],
output: {
bands: 2,
sampleType: "FLOAT32"
}
};
}
function evaluatePixel(sample) {
return [
sample.AER_AI_354_388,
sample.dataMask
]
}
the same for AER_AI_340_380 . I very rarely noticed some negative values also for HCHO layer which uses the exact same script.
Am I doing something wrong ?
Thanks in advance for the help