-
Notifications
You must be signed in to change notification settings - Fork 298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No supported files found for OLCI L2A #2966
Comments
Looks like the end time is before the start time... |
@mraspaud Thank you so much! I am trying to save as geotif. but export geotif is not georeferenced. Any way to do that with sat py? |
The level 2 data is not on a known grid out of the box. You need to resample the data before saving it to have a georeferenced geotiff. Check the satpy documentation on how to resample if you are unsure. |
The output is resampled data, but the original OLCI data appears to have a 300-meter resolution. After reprojecting, the resolution doesn't seem to stay at 300 meters. Additionally, the output should be a single-band raster, but it's showing as a two-band raster. Instead of reflectance values, it’s displaying integer values, which is entirely incorrect. I must be missing something. Could you please help me troubleshoot this?
|
|
I am trying to read OLCI level 2 A. but it is not working.
ValueError Traceback (most recent call last)
Cell In[13], line 3
1 path=r"C:\Users\hafez\MSU\Research\data\satellitedata\OLCI_rs"
2 file=os.path.join(path,"\S3A_OL_2_WFR____20241023T160700_20241023T161000_20241023T180154_0179_118_211_2520_MAR_O_NR_003.SEN3" ,"S3A_OL_2_WFR____20241023T160700_20241023T161000_20241023T180154_0179_118_211_2520_MAR_O_NR_003.SEN3")
----> 3 files = find_files_and_readers(sensor='olci',
4 start_time=datetime(2024, 10, 23, 16, 7),
5 end_time=datetime(2024, 10, 23, 16, ),
6 base_dir=file,
7 reader='olci_l2')
9 scn = Scene(filenames=files)
File c:\Users\hafez\miniconda3\envs\sentinel\lib\site-packages\satpy\readers_init_.py:494, in find_files_and_readers(start_time, end_time, base_dir, reader, sensor, filter_parameters, reader_kwargs, missing_ok, fs)
491 raise ValueError("Sensor '{}' not supported by any readers".format(sensor))
493 if not (reader_files or missing_ok):
--> 494 raise ValueError("No supported files found")
495 return reader_files
ValueError: No supported files found
The text was updated successfully, but these errors were encountered: