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

Method readPolarData

io/BpfReader.cpp:294–306  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

292
293
294bool BpfReader::readPolarData()
295{
296 if (!m_polarHeader.read(m_stream))
297 return false;
298 for (size_t i = 0; i < m_polarHeader.m_numFrames; ++i)
299 {
300 BpfPolarFrame frame;
301 if (!frame.read(m_stream))
302 return false;
303 m_polarFrames.push_back(frame);
304 }
305 return (bool)m_stream;
306}
307
308
309void BpfReader::ready(PointTableRef)

Callers

nothing calls this directly

Calls 1

readMethod · 0.45

Tested by

no test coverage detected