LSST Applications g0dd1f4853b+10f999ec6a,g1635faa6d4+87195dc7a7,g1653933729+a8ce1bb630,g28da252d5a+52e63b167c,g2bbee38e9b+de1ea1445d,g2bc492864f+de1ea1445d,g2cdde0e794+c2c89b37c4,g3156d2b45e+41e33cbcdc,g347aa1857d+de1ea1445d,g35bb328faa+a8ce1bb630,g3a166c0a6a+de1ea1445d,g3e281a1b8c+9f2c4e2fc3,g414038480c+077ccc18e7,g41af890bb2+91913bf47e,g531c6476d5+76a064336f,g5fbc88fb19+17cd334064,g781aacb6e4+a8ce1bb630,g7ab3e175f3+c50d54ced3,g80478fca09+fa8a736ab7,g82479be7b0+8047a7f847,g858d7b2824+76a064336f,g9125e01d80+a8ce1bb630,ga5288a1d22+c4b4c41fa2,gae0086650b+a8ce1bb630,gb58c049af0+d64f4d3760,gb9c6c11c1e+e06cc5572d,gc28159a63d+de1ea1445d,gcf0d15dbbd+b5ff149290,gd3624f51fd+4798c71331,gda3e153d99+76a064336f,gda6a2b7d83+b5ff149290,gdaeeff99f8+1711a396fd,ge2409df99d+1433a6c73d,ge33fd446bb+76a064336f,ge79ae78c31+de1ea1445d,gee3d5c6094+118f03e3d0,gf0baf85859+147a0692ba,gf3967379c6+02b11634a5,w.2024.45
LSST Data Management Base Package
Loading...
Searching...
No Matches
Functions | Variables
astshim.fitsTableContinued Namespace Reference

Functions

 getColumnData (self, column)
 

Variables

 getColumnData
 

Function Documentation

◆ getColumnData()

astshim.fitsTableContinued.getColumnData ( self,
column )
Retrieve the column data in the correct type and shape.

Parameters
----------
column : `str`
    Name of the column to retrieve.

Returns
-------
data : `list` of `numpy.array`

Definition at line 6 of file fitsTableContinued.py.

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

Variable Documentation

◆ getColumnData

astshim.fitsTableContinued.getColumnData

Definition at line 33 of file fitsTableContinued.py.