| 319 | |
| 320 | |
| 321 | void LasWriter::readyTable(PointTableRef table) |
| 322 | { |
| 323 | m_firstPoint = true; |
| 324 | m_forwardMetadata = table.privateMetadata("lasforward"); |
| 325 | MetadataNode m = table.metadata(); |
| 326 | if(d->opts.writePDALMetadata) |
| 327 | { |
| 328 | addMetadataVlr(m); |
| 329 | addPipelineVlr(); |
| 330 | } |
| 331 | addExtraBytesVlr(); |
| 332 | addUserVlrs(m); |
| 333 | addForwardVlrs(); |
| 334 | } |
| 335 | |
| 336 | |
| 337 | void LasWriter::readyFile(const std::string& filename, const SpatialReference& srs) |
nothing calls this directly
no test coverage detected