pytroll / satpy

Python package for earth-observing satellite data processing
http://satpy.readthedocs.org/en/latest/
GNU General Public License v3.0
1.06k stars 294 forks source link

Tropomi l2 reader ValueError: No supported files found #2659

Open Kexin828 opened 10 months ago

Kexin828 commented 10 months ago

The Tropomi l2 reader can read ’S5P_OFFL_L2NO2__‘ files but cannot read 'S5P_RPRO_L2NO2__' files.

image

satpy==0.41.1

djhoese commented 10 months ago

I'm not familiar with tropomi files. Could you tell me the difference between these two types?

Kexin828 commented 10 months ago

Thanks for your reply.

Tropomi reprocessed data(RPRO) involves applying the latest processing techniques to improve the quality of existing data, while offline data(OFFL) is processed after a certain time lag from the observation time, allowing for careful calibration and validation.

They have basically similar data composition, but I can't read the RPRO data with the same code, and I don't know how to fix this. image image

pnuu commented 10 months ago

Your files have reduced in their names, which means the pattern defined here doesn't match. You could try creating your own local config that has the reduced in it:

Kexin828 commented 10 months ago

Thanks for your answer. It works and I have created a pull request with this change.