How to use the spiceypy.utils.support_types.SpiceCell.character 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 SPICECHAR_CELL(size, length):
    """
    Returns a Char Spice Cell with a given size
    :param size: number of elements
    :type size: int
    :param length: width of elements
    :type length: int
    :return: empty Spice Cell
    :rtype: spiceypy.utils.support_types.SpiceCell
    """
    return SpiceCell.character(size, length)
github AndrewAnnex / SpiceyPy / spiceypy / utils / support_types.py View on Github external
def SPICECHAR_CELL(size: int, length: int) -> SpiceCell:
    """
    Returns a Char Spice Cell with a given size
    :param size: number of elements
    :param length: width of elements
    :return: empty Spice Cell
    """
    return SpiceCell.character(size, length)