/****************************************************************************** * Copyright (c) 2019, Connor Manning (connor@hobu.co) * * Entwine -- Point cloud indexing * * Entwine is available under the terms of the LGPL2 license. See COPYING * for specific license text and more information. * ******************************************************************************/ #pragma once #include #include #include #include #include #include #include namespace entwine { json::iterator findStage(json& pipeline, std::string type); json::const_iterator findStage(const json& pipeline, std::string type); json& findOrAppendStage(json& pipeline, std::string type); json omitStage(json pipeline, std::string type); pdal::Stage* findStage(pdal::Stage& last, std::string type); pdal::Stage& getStage(pdal::PipelineManager& pm); pdal::Reader& getReader(pdal::Stage& last); pdal::Stage& getFirst(pdal::Stage& last); json getMetadata(pdal::Reader& reader); optional getScaleOffset(const pdal::Reader& reader); } // namespace entwine