How to use the spiceypy.utils.support_types.SpiceCell.bool function in spiceypy

To help you get started, we’ve selected a few spiceypy examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github AndrewAnnex / SpiceyPy / spiceypy / utils / support_types.py View on Github external
def SPICEBOOL_CELL(size):
    """
    Returns a Bool Spice Cell with a given size
    :param size: number of elements
    :type size: int
    :return: empty Spice Cell
    :rtype: spiceypy.utils.support_types.SpiceCell
    """
    return SpiceCell.bool(size)
github AndrewAnnex / SpiceyPy / spiceypy / utils / support_types.py View on Github external
def SPICEBOOL_CELL(size: int) -> SpiceCell:
    """
    Returns a Bool Spice Cell with a given size
    :param size: number of elements
    :return: empty Spice Cell
    """
    return SpiceCell.bool(size)