Skip to content
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

S3_EFR data: gdal issue on instrument_data band #28

Open
sbrunato opened this issue Jan 7, 2022 · 0 comments
Open

S3_EFR data: gdal issue on instrument_data band #28

sbrunato opened this issue Jan 7, 2022 · 0 comments
Labels
bug Something isn't working

Comments

@sbrunato
Copy link
Collaborator

sbrunato commented Jan 7, 2022

When trying to read data from instrument_data band on S3_EFR (creodias provider), I get the following error:

from eodag import EODataAccessGateway

dag = EODataAccessGateway()
search_results, _ = dag.search(productType='S3_EFR', geom={'lonmin': 1, 'latmin': 43.5, 'lonmax': 2, 'latmax': 44}, start='2021-06-01', end='2021-06-10')
data = search_results[0].get_data(band="instrument_data")

[ERROR ] (_product ) netcdf:[...]/instrument_data.nc:relative_spectral_covariance: No such file or directory

The issue comes from GDAL which cannot read from relative_spectral_covariance variable:

# OK for variable FWHM
$ gdalinfo netcdf:instrument_data.nc:FWHM > /dev/null
Warning 1: No UNIDATA NC_GLOBAL:Conventions attribute

# issue on variable relative_spectral_covariance
$ gdalinfo netcdf:instrument_data.nc:relative_spectral_covariance > /dev/null
Warning 1: No UNIDATA NC_GLOBAL:Conventions attribute
ERROR 4: netcdf:instrument_data.nc:relative_spectral_covariance: No such file or directory
gdalinfo failed - unable to open 'netcdf:instrument_data.nc:relative_spectral_covariance'.
@sbrunato sbrunato added the bug Something isn't working label Jan 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant