Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions rapida/ntl/noaa/cmask.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,9 @@ def cloud_coverage(hdf_url: str, bbox: list) -> int:
gdal.SetConfigOption('GDAL_SKIP', '')
# On Linux, we use the native NetCDF driver
base_ds = f'HDF5:"/vsicurl/{hdf_url}"'
mask_str = f'{base_ds}:CloudMaskBinary'
lon_str = f'{base_ds}:Longitude'
lat_str = f'{base_ds}:Latitude'
mask_str = f'{base_ds}://CloudMaskBinary'
lon_str = f'{base_ds}://Longitude'
lat_str = f'{base_ds}://Latitude'

gdal.SetConfigOption('GDAL_HTTP_TIMEOUT', '600')
gdal.SetConfigOption('GDAL_HTTP_MULTIPLEX', 'YES')
Expand Down
Loading