MCPcopy Create free account
hub / github.com/PDAL/PDAL / process

Method process

io/EsriReader.cpp:474–486  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

472
473
474void EsriReader::process(PointViewPtr dstView, const TileContents& tile,
475 point_count_t count)
476{
477 m_pointId = 0;
478 PointRef dst(*dstView);
479 for (PointId idx = 0; idx < tile.size(); ++idx)
480 {
481 if (count-- == 0)
482 return;
483 dst.setPointId(dstView->size());
484 processPoint(dst, tile);
485 }
486}
487
488
489bool EsriReader::processPoint(PointRef& dst, const TileContents& tile)

Callers

nothing calls this directly

Calls 2

setPointIdMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected