Loading [MathJax]/extensions/tex2jax.js
LSST Applications g0d33ba9806+97989ee787,g0fba68d861+57cab69267,g1e78f5e6d3+f1f8e160d9,g1fd858c14a+71413c3e43,g35bb328faa+fcb1d3bbc8,g4af146b050+0778a2a57a,g4d2262a081+e31b890e38,g4e0f332c67+53d227620f,g53246c7159+fcb1d3bbc8,g5a012ec0e7+e094618965,g60b5630c4e+97989ee787,g67b6fd64d1+98402a590a,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g87b7deb4dc+74fc793f15,g8852436030+d43d68859a,g89139ef638+98402a590a,g9125e01d80+fcb1d3bbc8,g94187f82dc+97989ee787,g989de1cb63+98402a590a,g9f33ca652e+8d6b0b7794,g9f7030ddb1+19b2dc913f,ga2b97cdc51+97989ee787,ga44b1db4f6+f1d430a4fa,gabe3b4be73+1e0a283bba,gabf8522325+fdcc45437b,gb1101e3267+d30395f664,gb58c049af0+f03b321e39,gb89ab40317+98402a590a,gcf25f946ba+d43d68859a,gd6cbbdb0b4+2800613beb,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+546cc78751,ge278dab8ac+c824a60960,ge410e46f29+98402a590a,gf67bdafdda+98402a590a,gfe06eef73a+2766dcde2b,w.2025.14
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
fitsTableContinued.py
Go to the documentation of this file.
1__all__ = ["FitsTable", "getColumnData"]
2
3from ._astshimLib import DataType, FitsTable
4
5
6def getColumnData(self, column):
7 """Retrieve the column data in the correct type and shape.
8
9 Parameters
10 ----------
11 column : `str`
12 Name of the column to retrieve.
13
14 Returns
15 -------
16 data : `list` of `numpy.array`
17
18 """
19 nrows = self.nRow
20 shape = self.columnShape(column)
21 dtype = self.columnType(column)
22
23 if dtype == DataType.DoubleType:
24 newshape = list(shape)
25 newshape.append(nrows)
26 coldata = self.getColumnData1D(column)
27 coldata = coldata.reshape(newshape, order="F")
28 else:
29 raise ValueError("Can only retrieve double column data")
30 return coldata
31
32
33FitsTable.getColumnData = getColumnData