GDAL
gdalalg_raster_read.h
1/******************************************************************************
2 *
3 * Project: GDAL
4 * Purpose: "read" step of "raster pipeline"
5 * Author: Even Rouault <even dot rouault at spatialys.com>
6 *
7 ******************************************************************************
8 * Copyright (c) 2024, Even Rouault <even dot rouault at spatialys.com>
9 *
10 * SPDX-License-Identifier: MIT
11 ****************************************************************************/
12
13#ifndef GDALALG_RASTER_READ_INCLUDED
14#define GDALALG_RASTER_READ_INCLUDED
15
16#include "gdalalg_raster_pipeline.h"
17
19
20/************************************************************************/
21/* GDALRasterReadAlgorithm */
22/************************************************************************/
23
24class GDALRasterReadAlgorithm final : public GDALRasterPipelineStepAlgorithm
25{
26 public:
27 static constexpr const char *NAME = "read";
28 static constexpr const char *DESCRIPTION = "Read a raster dataset.";
29 static constexpr const char *HELP_URL =
30 "/programs/gdal_raster_pipeline.html";
31
32 explicit GDALRasterReadAlgorithm(bool openForMixedRasterVector = false);
33
34 bool CanBeFirstStep() const override
35 {
36 return true;
37 }
38
39 private:
40 bool RunStep(GDALPipelineStepRunContext &ctxt) override;
41};
42
44
45#endif