We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As noted on conda-forge/libnetcdf-feedstock#166, the following URL https://noaa-goes16.s3.amazonaws.com/ABI-L1b-RadC/2017/059/03/OR_ABI-L1b-RadC-M3C13_G16_s20170590337505_e20170590340289_c20170590340316.nc#mode=bytes fails when trying to use ncdump -h or netcdf4-python's Dataset class with:
ncdump -h
Dataset
ncdump: https://noaa-goes16.s3.amazonaws.com/ABI-L1b-RadC/2017/059/03/OR_ABI-L1b-RadC-M3C13_G16_s20170590337505_e20170590340289_c20170590340316.nc#mode=bytes: NetCDF: Malformed URL
Adjusting it to https://noaa-goes16.s3.us-east-1.amazonaws.com/ABI-L1b-RadC/2017/059/03/OR_ABI-L1b-RadC-M3C13_G16_s20170590337505_e20170590340289_c20170590340316.nc#mode=bytes fixes the problem, but this should not be necessary based on the AWS S3 docs on supported endpoints for the us-east-1 region.
I'll also note that the URL in question comes from netcdf-c's own tst_byterange.c:
tst_byterange.c
netcdf-c/nc_test/tst_byterange.c
Lines 32 to 41 in 00a722b
Before any work is done to correct the URL parsing/checking, that test has to be investigated to identify why it's not already failing.
The text was updated successfully, but these errors were encountered:
Fixed by PR #2649
Sorry, something went wrong.
Should this and its sister issue #2643 be closed following #2649?
DennisHeimbigner
No branches or pull requests
As noted on conda-forge/libnetcdf-feedstock#166, the following URL https://noaa-goes16.s3.amazonaws.com/ABI-L1b-RadC/2017/059/03/OR_ABI-L1b-RadC-M3C13_G16_s20170590337505_e20170590340289_c20170590340316.nc#mode=bytes fails when trying to use
ncdump -h
or netcdf4-python'sDataset
class with:Adjusting it to https://noaa-goes16.s3.us-east-1.amazonaws.com/ABI-L1b-RadC/2017/059/03/OR_ABI-L1b-RadC-M3C13_G16_s20170590337505_e20170590340289_c20170590340316.nc#mode=bytes fixes the problem, but this should not be necessary based on the AWS S3 docs on supported endpoints for the us-east-1 region.
I'll also note that the URL in question comes from netcdf-c's own
tst_byterange.c
:netcdf-c/nc_test/tst_byterange.c
Lines 32 to 41 in 00a722b
Before any work is done to correct the URL parsing/checking, that test has to be investigated to identify why it's not already failing.
The text was updated successfully, but these errors were encountered: