Elaboradar  0.1

◆ get_first_level_file_name()

virtual const char* elaboradar::SiteGAT::get_first_level_file_name ( unsigned  month) const
inlinevirtual

Return first_elev file name.

Parametri
[in]month- month
Restituisce
first_elev file name [char *]

Implementa elaboradar::Site.

Definizione alla linea 66 del file site.cpp.

67  {
68  if (1 <= month && month <= 3)
69  return (datipath+"/FIRST_LEVEL_GAT_2006_INV").c_str();
70  else if (4 <= month && month <= 9)
71  //return "../dati/FIRST_LEVEL_GAT_2006_PRI-EST";
72  return (datipath+"FIRST_LEVEL_GAT_2006_PRI-EST").c_str();
73  else
74  //return "../dati/FIRST_LEVEL_GAT_2006_AUT";
75  return (datipath+"FIRST_LEVEL_GAT_2006_AUT").c_str();
76  }
std::string datipath
Path mappe statiche e dati fuzzy logic.
Definition: site.h:35