Hi,
I’m trying to do a month mean of sulfur dioxide but all I’m getting is this strange composition with a lot of negative values. I checked similar topics but still don’t have a clue what’s the issue here. Even if I set all the negative values to 0, the map doesn’t provide information about possible emitters. It looks really random.
I’m using the following code:
products = glob.glob(os.path.join(download_path, ‘*.nc’))
operations = ‘;’.join([
‘SO2_column_number_density_validity > 50’,
‘keep(latitude, longitude, latitude_bounds, longitude_bounds, SO2_column_number_density)’,
‘bin_spatial(601,49,0.01,1101,14,0.01)’,
‘derive(longitude{longitude})’,
‘derive(latitude{latitude})’
])
reduce_operations = ‘;’.join([
‘squash(time, (latitude, longitude, latitude_bounds, longitude_bounds))’,
‘bin()’
])
average = harp.import_product(products, operations = operations, reduce_operations = reduce_operations)