Line data Source code
1 : /****************************************************************************** 2 : * 3 : * Project: GDAL 4 : * Purpose: gdal "mdim info" 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_INFO_INCLUDED 14 : #define GDALALG_MDIM_INFO_INCLUDED 15 : 16 : #include "gdalalgorithm.h" 17 : 18 : //! @cond Doxygen_Suppress 19 : 20 : /************************************************************************/ 21 : /* GDALMdimInfoAlgorithm */ 22 : /************************************************************************/ 23 : 24 : class GDALMdimInfoAlgorithm final : public GDALAlgorithm 25 : { 26 : public: 27 : static constexpr const char *NAME = "info"; 28 : static constexpr const char *DESCRIPTION = 29 : "Return information on a multidimensional dataset."; 30 : static constexpr const char *HELP_URL = "/programs/gdal_mdim_info.html"; 31 : 32 22 : static std::vector<std::string> GetAliases() 33 : { 34 22 : return {}; 35 : } 36 : 37 : GDALMdimInfoAlgorithm(); 38 : 39 : private: 40 : bool RunImpl(GDALProgressFunc pfnProgress, void *pProgressData) override; 41 : 42 : std::string m_format{}; 43 : GDALArgDatasetValue m_dataset{}; 44 : std::vector<std::string> m_openOptions{}; 45 : std::vector<std::string> m_inputFormats{}; 46 : std::string m_output{}; 47 : bool m_detailed = false; 48 : std::string m_array{}; 49 : int m_limit = 0; 50 : std::vector<std::string> m_arrayOptions{}; 51 : bool m_stats = false; 52 : }; 53 : 54 : //! @endcond 55 : 56 : #endif