|
| template<typename T, typename Record> |
| 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.
|
| |
| template<typename Record> |
| ndarray::Array< double const, 1, 1 > | lsst::afw::table::python::_getArrayFromCatalog (CatalogT< Record > const &catalog, Key< Angle > const &key) |
| | Extract a column from a potentially non-contiguous Catalog (angle specialization)
|
| |
| template<typename T, typename Record> |
| ndarray::Array< typename Field< T >::Value const, 2, 2 > | lsst::afw::table::python::_getArrayFromCatalog (CatalogT< Record > const &catalog, Key< Array< T > > const &key) |
| | Extract an array-valued column from a potentially non-contiguous Catalog into a 2-d array.
|
| |
| template<typename Record> |
| void | lsst::afw::table::python::_setFlagColumnToArray (CatalogT< Record > &catalog, Key< Flag > const &key, ndarray::Array< bool const, 1 > const &array) |
| |
| template<typename Record> |
| void | lsst::afw::table::python::_setFlagColumnToScalar (CatalogT< Record > &catalog, Key< Flag > const &key, bool value) |
| |
| template<typename T, typename Record> |
| void | lsst::afw::table::python::declareCatalogOverloads (PyCatalog< Record > &cls) |
| | Declare field-type-specific overloaded catalog member functions for one field type.
|
| |
| template<typename T, typename Record> |
| void | lsst::afw::table::python::declareCatalogArrayOverloads (PyCatalog< Record > &cls) |
| | Declare field-type-specific overloaded catalog member functions for one array-valued field type.
|
| |
| template<typename Record> |
| PyCatalog< Record > | lsst::afw::table::python::declareCatalog (cpputils::python::WrapperCollection &wrappers, std::string const &name, bool isBase=false) |
| | Wrap an instantiation of lsst::afw::table::CatalogT<Record>.
|
| |