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

Method read

io/GDALReader.cpp:178–189  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176}
177
178point_count_t GDALReader::read(PointViewPtr view, point_count_t numPts)
179{
180 point_count_t cnt = 0;
181 while (cnt < numPts)
182 {
183 point_count_t processed = m_blockReader.processBlock(view);
184 if (processed == 0)
185 break;
186 cnt += processed;
187 }
188 return cnt;
189}
190
191bool GDALReader::processOne(PointRef& point)
192{

Callers 1

readBlockMethod · 0.45

Calls 1

processBlockMethod · 0.80

Tested by

no test coverage detected