Skip to content

Commit

Permalink
Add support for reading X (bit) binary table column type [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
taldcroft committed Feb 9, 2016
1 parent be54616 commit 5e7f8b6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fitsio/fitslib.py
Expand Up @@ -4491,7 +4491,8 @@ def _convert_full_start_to_offset(dims, start):
'BINARY_TBL':BINARY_TBL}

# no support yet for complex
_table_fits2npy = {11: 'u1',
_table_fits2npy = {1: 'b1',
11: 'u1',
12: 'i1',
14: 'b1', # logical. Note pyfits uses this for i1, cfitsio casts to char*
16: 'S',
Expand Down

0 comments on commit 5e7f8b6

Please sign in to comment.