provides a set of converter function between DM and generic memory manager structures More...
Typedefs | |
typedef ConstIterator< IPoint > | const_iterator_point |
Point iterator. | |
Functions | |
DM_API void | initColBufferManager (IColBufferManagerWrite &colBufferManager, int64_t rowCount, const AddInfoLayoutHandle &layout, bool withCoordinates=true, AddInfoHandle noDataValues=AddInfoHandle(), bool useNoDataMask=false) |
initialize a column buffer manager that it can be used for subsequent converter calls More... | |
DM_API int64_t | fillColBuffer (IColBufferManagerWrite &colBufferManager, int64_t rowIdx, const_iterator_point it, const_iterator_point end, FilterHandle filter=FilterHandle()) |
DM_API int64_t | fillColBuffer (IColBufferManagerWrite &colBufferManager, int64_t rowIdx, const AddInfoLayoutHandle &mapColumn, const IIndexMapSet &map, IIndexHelperSet &helper, bool invertIndexMap, const_iterator_point it, const_iterator_point end, FilterHandle filter=FilterHandle()) |
DM_API int64_t | asColBuffer (IColBufferManagerWrite &colBufferManager, const_iterator_point it, const_iterator_point end, const AddInfoLayoutHandle &layout, bool withCoordinates=true, AddInfoHandle noDataValues=AddInfoHandle(), bool useNoDataMask=false, FilterHandle filter=FilterHandle()) |
initialize and fill a column buffer manager this function combines initColBufferManager and fillColBuffer calls. The number of rowCounts that is needed to store all data is internally determined and passed to the colBufferManager object before the actual filling is performed More... | |
DM_API int64_t | asColBuffer (IColBufferManagerWrite &colBufferManager, const_iterator_point it, const_iterator_point end, int64_t rowCount, const AddInfoLayoutHandle &layout, bool withCoordinates=true, AddInfoHandle noDataValues=AddInfoHandle(), bool useNoDataMask=false, FilterHandle filter=FilterHandle()) |
initialize and fill a column buffer manager this function combines initColBufferManager and fillColBuffer calls. In this function the number of rows needs to be provided in rowCount to store all data. Its is also passed to the colBufferManager object before the actual filling is performed More... | |
DM_API int64_t | asColBuffer (IColBufferManagerWrite &colBufferManager, const_iterator_point it, const_iterator_point end, const AddInfoLayoutHandle &layout, const AddInfoLayoutHandle &mapColumn, const IIndexMapSet &map, IIndexHelperSet &helper, bool invertIndexMap, bool withCoordinates=true, AddInfoHandle noDataValues=AddInfoHandle(), bool useNoDataMask=false, FilterHandle filter=FilterHandle()) |
DM_API int64_t | setFromColBuffer (const_iterator_point it, const_iterator_point end, const AddInfoLayoutHandle &layout, const IColBufferManagerRead &colBufferManager, FilterHandle filter=FilterHandle(), int64_t startRow=0) |
Set attributes from a column buffer object. | |
DM_API int64_t | setByIdFromColBuffer (DM::IDatamanager &dm, const AddInfoLayoutHandle &layout, const IColBufferManagerRead &colBufferManager) |
set attributes by DM object id. | |
DM_API void | compareWith (const IColBufferManagerRead &colBufferManager, DM::IClassificationMatrix &classMatrix, const_iterator_point it, const_iterator_point end, const DM::AddInfoLayoutHandle &mapCol, const DM::IIndexMapSet &map, DM::IIndexHelperSet &helper, bool invertIndexMap, DM::FilterHandle filter=FilterHandle()) |
provides a set of converter function between DM and generic memory manager structures
DM_API int64_t DM::GenericConverter::asColBuffer | ( | IColBufferManagerWrite & | colBufferManager, |
const_iterator_point | it, | ||
const_iterator_point | end, | ||
const AddInfoLayoutHandle & | layout, | ||
bool | withCoordinates = true , |
||
AddInfoHandle | noDataValues = AddInfoHandle() , |
||
bool | useNoDataMask = false , |
||
FilterHandle | filter = FilterHandle() |
||
) |
initialize and fill a column buffer manager this function combines initColBufferManager and fillColBuffer calls. The number of rowCounts that is needed to store all data is internally determined and passed to the colBufferManager object before the actual filling is performed
[in] | colBufferManager | column buffer manager object for allocating the necessary column buffer objects |
[in] | it | begin iterator of points |
[in] | end | end iterator of points |
[in] | layout | defines the attributes (columns of the data frame object) to that should be generated |
[in] | withCoordinates | flag if columns for the coordinates should generated as well |
[in] | noDataValues | object that contains no data values for attributes (layout has to match parameter layout) |
[in] | useNoDataMask | flag if a separate no data flag memory array is used instead of no data values |
[in] | filter | optional filter to subselect the points |
DM_API int64_t DM::GenericConverter::asColBuffer | ( | IColBufferManagerWrite & | colBufferManager, |
const_iterator_point | it, | ||
const_iterator_point | end, | ||
int64_t | rowCount, | ||
const AddInfoLayoutHandle & | layout, | ||
bool | withCoordinates = true , |
||
AddInfoHandle | noDataValues = AddInfoHandle() , |
||
bool | useNoDataMask = false , |
||
FilterHandle | filter = FilterHandle() |
||
) |
initialize and fill a column buffer manager this function combines initColBufferManager and fillColBuffer calls. In this function the number of rows needs to be provided in rowCount to store all data. Its is also passed to the colBufferManager object before the actual filling is performed
[in] | colBufferManager | column buffer manager object for allocating the necessary column buffer objects |
[in] | it | begin iterator of points |
[in] | end | end iterator of points |
[in] | rowCount | number of rosw to be excepted (needs to match the number of points that will be filled in) |
[in] | layout | defines the attributes (columns of the data frame object) to that should be generated |
[in] | withCoordinates | flag if columns for the coordinates should generated as well |
[in] | noDataValues | object that contains no data values for attributes (layout has to match parameter layout) |
[in] | useNoDataMask | flag if a separate no data flag memory array is used instead of no data values |
[in] | filter | optional filter to subselect the points |
DM_API void DM::GenericConverter::initColBufferManager | ( | IColBufferManagerWrite & | colBufferManager, |
int64_t | rowCount, | ||
const AddInfoLayoutHandle & | layout, | ||
bool | withCoordinates = true , |
||
AddInfoHandle | noDataValues = AddInfoHandle() , |
||
bool | useNoDataMask = false |
||
) |
initialize a column buffer manager that it can be used for subsequent converter calls
[in] | colBufferManager | column buffer manager object for allocating the necessary column buffer objects |
[in] | rowCount | number of rows to reserve |
[in] | layout | defines the attributes (columns of the data frame object) to that should be generated |
[in] | withCoordinates | flag if columns for the coordinates should generated as well |
[in] | noDataValues | object that contains no data values for attributes (layout has to match parameter layout) |
[in] | useNoDataMask | flag if a separate no data flag memory array is used instead of no data values |