Line data Source code
1 : /****************************************************************************** 2 : * 3 : * Project: GDAL 4 : * Purpose: gdal "mdim convert" subcommand 5 : * Author: Even Rouault <even dot rouault at spatialys.com> 6 : * 7 : ****************************************************************************** 8 : * Copyright (c) 2025, Even Rouault <even dot rouault at spatialys.com> 9 : * 10 : * SPDX-License-Identifier: MIT 11 : ****************************************************************************/ 12 : 13 : #ifndef GDALALG_MDIM_CONVERT_INCLUDED 14 : #define GDALALG_MDIM_CONVERT_INCLUDED 15 : 16 : #include "gdalalgorithm.h" 17 : 18 : //! @cond Doxygen_Suppress 19 : 20 : /************************************************************************/ 21 : /* GDALMdimConvertAlgorithm */ 22 : /************************************************************************/ 23 : 24 : class GDALMdimConvertAlgorithm final : public GDALAlgorithm 25 : { 26 : public: 27 : static constexpr const char *NAME = "convert"; 28 : static constexpr const char *DESCRIPTION = 29 : "Convert a multidimensional dataset."; 30 : static constexpr const char *HELP_URL = "/programs/gdal_mdim_convert.html"; 31 : 32 22 : static std::vector<std::string> GetAliases() 33 : { 34 22 : return {}; 35 : } 36 : 37 : explicit GDALMdimConvertAlgorithm(); 38 : 39 : private: 40 : bool RunImpl(GDALProgressFunc pfnProgress, void *pProgressData) override; 41 : 42 : std::string m_outputFormat{}; 43 : GDALArgDatasetValue m_inputDataset{}; 44 : std::vector<std::string> m_openOptions{}; 45 : std::vector<std::string> m_inputFormats{}; 46 : GDALArgDatasetValue m_outputDataset{}; 47 : std::vector<std::string> m_creationOptions{}; 48 : bool m_overwrite = false; 49 : bool m_strict = false; 50 : std::vector<std::string> m_arrays{}; 51 : std::vector<std::string> m_arrayOptions{}; 52 : std::vector<std::string> m_groups{}; 53 : std::vector<std::string> m_subsets{}; 54 : std::vector<std::string> m_scaleAxes{}; 55 : }; 56 : 57 : //! @endcond 58 : 59 : #endif