Skip to content

Commit

Permalink
first pass at making cells easier to create, names will be fluid
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewAnnex committed Jan 23, 2019
1 parent 0321cfc commit 8067f50
Show file tree
Hide file tree
Showing 3 changed files with 145 additions and 132 deletions.
15 changes: 15 additions & 0 deletions spiceypy/spiceypy.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,21 @@ def get_found_catch_state():
"""
return config.catch_false_founds

def cell_double(cell_size):
return stypes.SPICEDOUBLE_CELL(cell_size)

def cell_int(cell_size):
return stypes.SPICEINT_CELL(cell_size)

def cell_char(cell_size, length):
return stypes.SPICECHAR_CELL(cell_size, length)

def cell_bool(cell_size):
return stypes.SPICEBOOL_CELL(cell_size)

def cell_time(cell_size):
return stypes.SPICETIME_CELL(cell_size)


################################################################################
# A
Expand Down

0 comments on commit 8067f50

Please sign in to comment.