Exemple #1
0
//----------------------------------------
void CProductErs::Init()
{
  m_label = "Ers product";

  m_forceLatMinCriteriaValue = -83.0;
  m_forceLatMaxCriteriaValue = 83.0;

  InitDateRef();

  m_timeStampSecondFieldName = "Tim_1";
  m_timeStampMicrosecondFieldName = "Tim_2";
  m_latitudeFieldName = "Lat";
  m_longitudeFieldName = "Lon";
  
  //Set delta time in seconds between two high resolution measures (basic delta time / number of high resolution measures)
  m_numHighResolutionMeasure = 10;
  m_deltaTimeHighResolution = 0.98/m_numHighResolutionMeasure; 

  // Reference point of high resolution measures corresponds to the tenth point (index : (m_numHighResolutionMeasure - 1) / 2)
  m_refPoint = (m_numHighResolutionMeasure - 1) / 2;

  InitCriteriaInfo();

}
Exemple #2
0
//----------------------------------------
void CProductJason::Init()
{
    m_label = "Jason-1 product";

    m_forceLatMinCriteriaValue = -67.0;
    m_forceLatMaxCriteriaValue = 67.0;

    InitDateRef();

    m_timeStampDayFieldName = "time_day";
    m_timeStampSecondFieldName = "time_sec";
    m_timeStampMicrosecondFieldName = "time_microsec";
    m_latitudeFieldName = "latitude";
    m_longitudeFieldName = "longitude";
    //Set delta time in seconds between two high resolution measures (basic delta time / number of high resolution measures)
    m_numHighResolutionMeasure = 20;
    m_deltaTimeHighResolution = 1.02/m_numHighResolutionMeasure;

    // Reference point of high resolution measures corresponds to the tenth point (index : (m_numHighResolutionMeasure - 1) / 2)
    m_refPoint = (m_numHighResolutionMeasure - 1) / 2;

    InitCriteriaInfo();

}