FileReaderNetCDF.cc
1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* FileReaderNetCDF.cc
*
* Created on: Feb 08, 2018
* Author: AKKA
*/
#include "FileReaderNetCDF.hh"
#include "ParameterManager.hh"
#include "LocalFileInterfaceConfig.hh"
#include "TimeUtil.hh"
#include <boost/shared_ptr.hpp>
namespace AMDA {
namespace LocalFileInterface {
FileReaderNetCDF::FileReaderNetCDF()
{
}
FileReaderNetCDF::~FileReaderNetCDF()
{
}
bool FileReaderNetCDF::open(std::string filePath)
{
return false;
}
bool FileReaderNetCDF::close(void)
{
return false;
}
bool FileReaderNetCDF::isOpened(void)
{
return false;
}
std::string FileReaderNetCDF::getTimeParamId(void)
{
return "";
}
bool FileReaderNetCDF::getParamInfo(std::string& paramId, LocalParamType& paramType, int& dim1Size, int& dim2Size)
{
return false;
}
int FileReaderNetCDF::getRecordIndex(std::string& timeId, double time)
{
return -1;
}
FileReaderStatus FileReaderNetCDF::getParamPacketData(std::string& timeId, std::string& paramId,
int recordIndex, double stopTime, LocalParamDataPacket *packet)
{
return FRS_ERROR;
}
bool FileReaderNetCDF::getInfo(const char* /*pInfoName*/, std::vector<double>& /*res*/)
{
return false;
}
} /* LocalFileInterface */
} /* AMDA */