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

Method readPoints

tools/lasdump/Dumper.cpp:128–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126
127
128void Dumper::readPoints()
129{
130 lazperf::reader::named_file f(m_filename);
131
132 std::vector<char> buf(m_header.pointLen());
133 for (uint64_t i = 0; i < m_header.pointCount(); ++i)
134 {
135 f.readPoint(buf.data());
136 *m_out << i << " " << cksum(buf) << "\n";
137 }
138}
139
140int Dumper::processArgs(std::deque<std::string> args)
141{

Callers

nothing calls this directly

Calls 5

cksumFunction · 0.70
pointLenMethod · 0.45
pointCountMethod · 0.45
readPointMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected