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
Example from @d3v-null:
03_mwalib.py test_files/1120082744/1120082744_DipAmps.metafits Traceback (most recent call last): File "/demo/03_mwalib.py", line 62, in <module> main() File "/demo/03_mwalib.py", line 48, in main ctx = MetafitsContext(metafits) ^^^^^^^^^^^^^^^^^^^^^^^^^ mwalib.MwalibError: src/metafits_context/mod.rs:682 test_files/1120082744/1120082744_DipAmps.metafits HDU 9999: Fits error: FitsError { status: 301, message: "illegal HDU number" }
In this case the actual error was that the TILEDATA hdu was present but did not have: EXTNAME = 'TILEDATA' / extension name
EXTNAME = 'TILEDATA' / extension name
A better error message would have saved some troubleshooting time and been clearer- e.g.:
Cannot locate 'TILEDATA' HDU in FITS file: xxxxx.fits
The text was updated successfully, but these errors were encountered:
NOTE: test file is from v1.3 of hyperdrive in test_files/1120082744/1120082744_DipAmps.metafits
test_files/1120082744/1120082744_DipAmps.metafits
Sorry, something went wrong.
No branches or pull requests
Example from @d3v-null:
In this case the actual error was that the TILEDATA hdu was present but did not have:
EXTNAME = 'TILEDATA' / extension name
A better error message would have saved some troubleshooting time and been clearer- e.g.:
The text was updated successfully, but these errors were encountered: