LSST Applications g070148d5b3+33e5256705,g0d53e28543+25c8b88941,g0da5cf3356+2dd1178308,g1081da9e2a+62d12e78cb,g17e5ecfddb+7e422d6136,g1c76d35bf8+ede3a706f7,g295839609d+225697d880,g2e2c1a68ba+cc1f6f037e,g2ffcdf413f+853cd4dcde,g38293774b4+62d12e78cb,g3b44f30a73+d953f1ac34,g48ccf36440+885b902d19,g4b2f1765b6+7dedbde6d2,g5320a0a9f6+0c5d6105b6,g56b687f8c9+ede3a706f7,g5c4744a4d9+ef6ac23297,g5ffd174ac0+0c5d6105b6,g6075d09f38+66af417445,g667d525e37+2ced63db88,g670421136f+2ced63db88,g71f27ac40c+2ced63db88,g774830318a+463cbe8d1f,g7876bc68e5+1d137996f1,g7985c39107+62d12e78cb,g7fdac2220c+0fd8241c05,g96f01af41f+368e6903a7,g9ca82378b8+2ced63db88,g9d27549199+ef6ac23297,gabe93b2c52+e3573e3735,gb065e2a02a+3dfbe639da,gbc3249ced9+0c5d6105b6,gbec6a3398f+0c5d6105b6,gc9534b9d65+35b9f25267,gd01420fc67+0c5d6105b6,geee7ff78d7+a14128c129,gf63283c776+ede3a706f7,gfed783d017+0c5d6105b6,w.2022.47
LSST Data Management Base Package
|
Functions | |
def | length (self) |
def | iter (self) |
def | next (self) |
def | to_string (self) |
def | contains (self, name) |
def | getitem (self, name) |
def | setitem (self, name, value) |
def | delitem (self, name) |
def | items (self) |
Variables | |
items | |
def astshim.fitsChanContinued.contains | ( | self, | |
name | |||
) |
Returns True if either the supplied name is present in the FitsChan or the supplied integer is acceptable to the FitsChan.
Definition at line 127 of file fitsChanContinued.py.
def astshim.fitsChanContinued.delitem | ( | self, | |
name | |||
) |
Delete an item from the FitsChan either by index (0-based) or by name. Parameters ---------- name : `str` or `int` If the name is an integer index the card at that position will be removed. The index is zero-based. A negative index counts from the end of the FitsChan. If the name is a string all cards matching that name will be removed. Raises ------ IndexError Raised if the supplied index is out of range. KeyError Raised if the supplied name is not found in the FitsChan.
Definition at line 318 of file fitsChanContinued.py.
def astshim.fitsChanContinued.getitem | ( | self, | |
name | |||
) |
Return a value associated with the supplied name. Parameters ---------- name : `str` or `int` If the FitsChan is being accessed by integer index the returned value will be the corresponding 80-character card. Index values are 0-based. A negative index counts from the end of the FitsChan. If the FitsChan is being accessed by string the returned value will be the scalar value associated with the first card that matches the supplied name. Returns ------- value : `str`, `int`, `float`, `bool`, or `None` The complete 80-character header card if an integer index is supplied, else the first matching value of the named header. Raises ------ IndexError Raised if an integer index is provided and the index is out of range. KeyError Raised if a string is provided and that string is not present in the FitsChan. Also raised if the supplied name is neither an integer not a string. RuntimeError Raised if there is some problem accessing the value in the FitsChan.
Definition at line 151 of file fitsChanContinued.py.
def astshim.fitsChanContinued.items | ( | self | ) |
Iterate over each card, returning the keyword and value in a tuple. Returns ------- key : `str` The key associated with the card. Can be an empty string for some comment styles. The same key name can be returned multiple times and be associated with different values. value : `str`, `int`, `bool`, `float` The value. Notes ----- The position of the iterator is internal to the FitsChan. Do not change the card position when iterating.
Definition at line 366 of file fitsChanContinued.py.
def astshim.fitsChanContinued.iter | ( | self | ) |
The FitsChan is its own iterator, incrementing the card position on each call. The position of the iterator is handled internally in the FitsChan and is moved to the start of the FitsChan by this call. Whilst iterating do not change the internal card position. The iterator will return 80-character header cards.
Definition at line 88 of file fitsChanContinued.py.
def astshim.fitsChanContinued.length | ( | self | ) |
Definition at line 81 of file fitsChanContinued.py.
def astshim.fitsChanContinued.next | ( | self | ) |
Return each 80-character header card until we run out of cards.
Definition at line 105 of file fitsChanContinued.py.
def astshim.fitsChanContinued.setitem | ( | self, | |
name, | |||
value | |||
) |
Set a new value. Parameters ---------- name : `str` or `int` If the name is an integer index this corresponds to a position within the FitsChan. Index values are 0-based. A negative index counts from the end of the FitsChan. If the index matches the number of cards (e.g. the return value of `len()`) the new value will be appended to the end of the FitsChan. If the name is an empty string or `None`, the value will be inserted at the current card position as a comment card. If the name is a string corresponding to a header card that is already present in the FitsChan, the new value will overwrite the existing value leaving the header name and any comment unchanged. Any other cards matching that name later in the header will be removed. If there is no header with that name, a new card will be inserted at the end of the FitsChan. value : `str`, `int`, `float`, `bool`, `None` The new value to be inserted. If an integer index is given it must be a complete FITS header card. The string will be padded to 80 characters. Raises ------ IndexError Raised if the supplied integer index is out of range. KeyError Raised if the supplied name is neither a string or an integer. TypeError Raised if an integer index is given but the supplied value is not a string.
Definition at line 224 of file fitsChanContinued.py.
def astshim.fitsChanContinued.to_string | ( | self | ) |
A FitsChan string representation is a FITS header with newlines after each 80-character header card.
Definition at line 117 of file fitsChanContinued.py.
astshim.fitsChanContinued.items |
Definition at line 394 of file fitsChanContinued.py.