Elaboradar  0.1

◆ get_first_level_file_name()

virtual const char* elaboradar::SiteSPC::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 122 del file site.cpp.

123  {
124  if (1 <= month && month <= 3)
125  //return "../dati/FIRST_LEVEL_SPC_2006_INV";
126  return (datipath+"FIRST_LEVEL_SPC_2006_INV").c_str();
127  else if (4 <= month && month <= 9)
128  //return "../dati/FIRST_LEVEL_SPC_2006_PRI-EST";
129  return (datipath+"FIRST_LEVEL_SPC_2006_PRI-EST").c_str();
130  else
131  //return "../dati/FIRST_LEVEL_SPC_2006_AUT";
132  return (datipath+"FIRST_LEVEL_SPC_2006_AUT").c_str();
133  }
std::string datipath
Path mappe statiche e dati fuzzy logic.
Definition: site.h:35