LSST Applications
21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
|
Typedefs | |
template<typename Record > | |
using | PyCatalog = pybind11::class_< CatalogT< Record >, std::shared_ptr< CatalogT< Record > >> |
template<typename Record > | |
using | PyColumnView = pybind11::class_< ColumnViewT< Record >, std::shared_ptr< ColumnViewT< Record > >, BaseColumnView > |
template<typename Record > | |
using | PySortedCatalog = pybind11::class_< SortedCatalogT< Record >, std::shared_ptr< SortedCatalogT< Record > >, CatalogT< Record > > |
Functions | |
template<typename T , typename Record > | |
ndarray::Array< typename Field< T >::Value const, 1, 1 > | _getArrayFromCatalog (CatalogT< Record > const &catalog, Key< T > const &key) |
Extract a column from a potentially non-contiguous Catalog. More... | |
template<typename Record > | |
ndarray::Array< double const, 1, 1 > | _getArrayFromCatalog (CatalogT< Record > const &catalog, Key< lsst::geom::Angle > const &key) |
template<typename Record > | |
void | _setFlagColumnToArray (CatalogT< Record > &catalog, Key< Flag > const &key, ndarray::Array< bool const, 1 > const &array) |
template<typename Record > | |
void | _setFlagColumnToScalar (CatalogT< Record > &catalog, Key< Flag > const &key, bool value) |
template<typename T , typename Record > | |
void | declareCatalogOverloads (PyCatalog< Record > &cls) |
Declare field-type-specific overloaded catalog member functions for one field type. More... | |
template<typename Record > | |
PyCatalog< Record > | declareCatalog (utils::python::WrapperCollection &wrappers, std::string const &name, bool isBase=false) |
Wrap an instantiation of lsst::afw::table::CatalogT<Record>. More... | |
template<typename Record > | |
PyColumnView< Record > | declareColumnView (utils::python::WrapperCollection &wrappers, std::string const &name, bool isBase=false) |
Declare member and static functions for a given instantiation of lsst::afw::table::ColumnViewT<RecordT>. More... | |
template<typename Record > | |
PySortedCatalog< Record > | declareSortedCatalog (utils::python::WrapperCollection &wrappers, std::string const &name, bool isBase=false) |
Wrap an instantiation of lsst::afw::table::SortedCatalogT<Record>. More... | |
using lsst::afw::table::python::PyCatalog = typedef pybind11::class_<CatalogT<Record>, std::shared_ptr<CatalogT<Record> >> |
using lsst::afw::table::python::PyColumnView = typedef pybind11::class_<ColumnViewT<Record>, std::shared_ptr<ColumnViewT<Record> >, BaseColumnView> |
Definition at line 38 of file columnView.h.
using lsst::afw::table::python::PySortedCatalog = typedef pybind11::class_<SortedCatalogT<Record>, std::shared_ptr<SortedCatalogT<Record> >, CatalogT<Record> > |
Definition at line 39 of file sortedCatalog.h.
ndarray::Array<double const, 1, 1> lsst::afw::table::python::_getArrayFromCatalog | ( | CatalogT< Record > const & | catalog, |
Key< lsst::geom::Angle > const & | key | ||
) |
catalog | Catalog |
key | Key to column to extract |
ndarray::Array<typename Field<T>::Value const, 1, 1> lsst::afw::table::python::_getArrayFromCatalog | ( | CatalogT< Record > const & | catalog, |
Key< T > const & | key | ||
) |
Extract a column from a potentially non-contiguous Catalog.
catalog | Catalog |
key | Key to column to extract |
void lsst::afw::table::python::_setFlagColumnToArray | ( | CatalogT< Record > & | catalog, |
Key< Flag > const & | key, | ||
ndarray::Array< bool const, 1 > const & | array | ||
) |
Definition at line 72 of file catalog.h.
PyCatalog<Record> lsst::afw::table::python::declareCatalog | ( | utils::python::WrapperCollection & | wrappers, |
std::string const & | name, | ||
bool | isBase = false |
||
) |
Wrap an instantiation of lsst::afw::table::CatalogT<Record>.
In addition to calling this method you must call addCatalogMethods on the class object in Python.
Record | Record type, e.g. BaseRecord or SimpleRecord. |
[in] | wrappers | Package manager class will be added to. |
[in] | name | Name prefix of the record type, e.g. "Base" or "Simple". |
[in] | isBase | Whether this instantiation is only being used as a base class (used to set the class name). |
Definition at line 173 of file catalog.h.
void lsst::afw::table::python::declareCatalogOverloads | ( | PyCatalog< Record > & | cls | ) |
Declare field-type-specific overloaded catalog member functions for one field type.
T | Field type. |
Record | Record type, e.g. BaseRecord or SimpleRecord. |
[in] | cls | Catalog pybind11 class. |
Definition at line 111 of file catalog.h.
PyColumnView<Record> lsst::afw::table::python::declareColumnView | ( | utils::python::WrapperCollection & | wrappers, |
std::string const & | name, | ||
bool | isBase = false |
||
) |
Declare member and static functions for a given instantiation of lsst::afw::table::ColumnViewT<RecordT>.
Record | Record type, e.g. BaseRecord or SimpleRecord. |
[in] | wrappers | Package manager class will be added to. |
[in] | name | Name prefix of the record type, e.g. "Base" or "Simple". |
[in] | isBase | Whether this instantiation is only being used as a base class (used to set the class name). |
Definition at line 52 of file columnView.h.
PySortedCatalog<Record> lsst::afw::table::python::declareSortedCatalog | ( | utils::python::WrapperCollection & | wrappers, |
std::string const & | name, | ||
bool | isBase = false |
||
) |
Wrap an instantiation of lsst::afw::table::SortedCatalogT<Record>.
In addition to calling this method (which also instantiates and wraps the CatalogT base class), you must call addCatalogMethods on the class object in Python.
Record | Record type, e.g. BaseRecord or SimpleRecord. |
[in] | wrappers | Package manager class will be added to. |
[in] | name | Name prefix of the record type, e.g. "Base" or "Simple". |
[in] | isBase | Whether this instantiation is only being used as a base class (used to set the class name). |
Definition at line 57 of file sortedCatalog.h.