|
|
@ -56,6 +56,7 @@ class LayeredData: public NCFuncs |
|
|
|
const NCFileA& Get() const { return nc; } |
|
|
|
const NCFileA& Get() const { return nc; } |
|
|
|
|
|
|
|
|
|
|
|
const std::vector<MDateTime>& Times() const { return times; } |
|
|
|
const std::vector<MDateTime>& Times() const { return times; } |
|
|
|
|
|
|
|
|
|
|
|
size_t Index(MDateTime tm) const |
|
|
|
size_t Index(MDateTime tm) const |
|
|
|
{ |
|
|
|
{ |
|
|
|
if(tm < Begin() || tm > End()) return 0; |
|
|
|
if(tm < Begin() || tm > End()) return 0; |
|
|
@ -73,6 +74,8 @@ class LayeredData: public NCFuncs |
|
|
|
} |
|
|
|
} |
|
|
|
return 0; |
|
|
|
return 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const MString& Url() const { return url; } |
|
|
|
}; |
|
|
|
}; |
|
|
|
std::vector<NC> nc; |
|
|
|
std::vector<NC> nc; |
|
|
|
std::vector<real> depths; |
|
|
|
std::vector<real> depths; |
|
|
|