57 lines
1.9 KiB
C++
57 lines
1.9 KiB
C++
/******************************************************************************
|
|
*
|
|
* Project: GDAL
|
|
* Purpose: gdal "vector" subcommand
|
|
* Author: Even Rouault <even dot rouault at spatialys.com>
|
|
*
|
|
******************************************************************************
|
|
* Copyright (c) 2024, Even Rouault <even dot rouault at spatialys.com>
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
****************************************************************************/
|
|
|
|
#include "gdalalgorithm.h"
|
|
|
|
#include "gdalalg_vector_info.h"
|
|
#include "gdalalg_vector_convert.h"
|
|
#include "gdalalg_vector_pipeline.h"
|
|
#include "gdalalg_vector_filter.h"
|
|
#include "gdalalg_vector_reproject.h"
|
|
|
|
/************************************************************************/
|
|
/* GDALVectorAlgorithm */
|
|
/************************************************************************/
|
|
|
|
class GDALVectorAlgorithm final : public GDALAlgorithm
|
|
{
|
|
public:
|
|
static constexpr const char *NAME = "vector";
|
|
static constexpr const char *DESCRIPTION = "Vector commands.";
|
|
static constexpr const char *HELP_URL = "/programs/gdal_vector.html";
|
|
|
|
static std::vector<std::string> GetAliases()
|
|
{
|
|
return {};
|
|
}
|
|
|
|
GDALVectorAlgorithm() : GDALAlgorithm(NAME, DESCRIPTION, HELP_URL)
|
|
{
|
|
RegisterSubAlgorithm<GDALVectorInfoAlgorithm>();
|
|
RegisterSubAlgorithm<GDALVectorConvertAlgorithm>();
|
|
RegisterSubAlgorithm<GDALVectorPipelineAlgorithm>();
|
|
RegisterSubAlgorithm<GDALVectorFilterAlgorithmStandalone>();
|
|
RegisterSubAlgorithm<GDALVectorReprojectAlgorithmStandalone>();
|
|
}
|
|
|
|
private:
|
|
bool RunImpl(GDALProgressFunc, void *) override
|
|
{
|
|
CPLError(CE_Failure, CPLE_AppDefined,
|
|
"The Run() method should not be called directly on the \"gdal "
|
|
"vector\" program.");
|
|
return false;
|
|
}
|
|
};
|
|
|
|
GDAL_STATIC_REGISTER_ALG(GDALVectorAlgorithm);
|