| 71 | |
| 72 | |
| 73 | std::string PipelineExecutor::getSchema() const |
| 74 | { |
| 75 | if (!m_executed) |
| 76 | throw pdal_error("Pipeline has not been executed!"); |
| 77 | |
| 78 | std::stringstream strm; |
| 79 | MetadataNode root = m_manager.pointTable().layout()->toMetadata().clone("schema"); |
| 80 | pdal::Utils::toJSON(root, strm); |
| 81 | return strm.str(); |
| 82 | } |
| 83 | |
| 84 | void PipelineExecutor::readPipeline() |
| 85 | { |
nothing calls this directly
no test coverage detected