mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
/*
|
|
MDAL - Mesh Data Abstraction Library (MIT License)
|
|
Copyright (C) 2018 Peter Petrik (zilolv at gmail dot com)
|
|
*/
|
|
|
|
#ifndef MDAL_GDAL_NETCDF_HPP
|
|
#define MDAL_GDAL_NETCDF_HPP
|
|
|
|
#include <string>
|
|
|
|
#include "mdal_gdal.hpp"
|
|
#include "mdal_data_model.hpp"
|
|
#include "mdal.h"
|
|
#include "mdal_driver.hpp"
|
|
|
|
namespace MDAL
|
|
{
|
|
|
|
class DriverGdalNetCDF: public DriverGdal
|
|
{
|
|
public:
|
|
DriverGdalNetCDF();
|
|
~DriverGdalNetCDF( ) override = default;
|
|
DriverGdalNetCDF *create() override;
|
|
|
|
private:
|
|
std::string GDALFileName( const std::string &fileName ) override;
|
|
bool parseBandInfo( const MDAL::GdalDataset *cfGDALDataset,
|
|
const metadata_hash &metadata, std::string &band_name,
|
|
MDAL::RelativeTimestamp *time, bool *is_vector, bool *is_x
|
|
) override;
|
|
void parseGlobals( const metadata_hash &metadata ) override;
|
|
|
|
MDAL::DateTime referenceTime() const override;
|
|
|
|
RelativeTimestamp::Unit mTimeUnit;
|
|
//! Take the first reference time parsed
|
|
DateTime mRefTime;
|
|
};
|
|
|
|
} // namespace MDAL
|
|
#endif // MDAL_GDAL_NETCDF_HPP
|