Ignore:
Timestamp:
05/23/16 08:19:36 (8 years ago)
Author:
tbretz
Message:
Added cloud base hieght (CLB)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/magiclidar.cc

    r16727 r18505  
    112112                try
    113113                {
    114                     if (line.substr(0, 3)=="ZEN")
    115                         data.fZd = stoi(line.substr(3));
     114                    if (line.substr(0, 2)=="ZD")
     115                        data.fZd = stoi(line.substr(2));
    116116                    if (line.substr(0, 2)=="AZ")
    117117                        data.fAz = stof(line.substr(2));
     
    132132                    if (line.substr(0, 3)=="T12")
    133133                        data.fT12 = stof(line.substr(3));
     134
     135                    if (line.substr(0, 3)=="CLB")
     136                        data.fCloudBaseHeight = stof(line.substr(3));
    134137
    135138                    if (line.substr(0, 4)=="HOUR")
     
    182185                << "/" << data.fT9
    183186                << "/" << data.fT12
     187                << " H="  << data.fCloudBaseHeight/1000 << "km"
    184188                << " Zd="  << data.fZd  << "°"
    185189                << " Az="  << data.fAz  << "°";
     
    332336    ConnectionDimLidar(ba::io_service& ioservice, MessageImp &imp) :
    333337        ConnectionLidar(ioservice, imp),
    334         fDimLidar("MAGIC_LIDAR/DATA", "F:1;F:1;F:1;F:1;F:1;F:1",
     338        fDimLidar("MAGIC_LIDAR/DATA", "F:1;F:1;F:1;F:1;F:1;F:1;F:1",
    335339                  "|Zd[deg]:Pointing direction zenith distance"
    336340                  "|Az[deg]:Pointing direction azimuth"
    337                   //"|CHE[km]:Cloud height"
    338                   //"|COT[1]:Cloud optical transparency at 532nm"
    339                   //"|PBL[100]:Planetary boundary layer normalized to 100 for clear nights"
    340341                  "|T3[1]:Transmission below 3km normalized to 1"
    341342                  "|T6[1]:Transmission below 6km normalized to 1"
    342343                  "|T9[1]:Transmission below 9km normalized to 1"
    343                   "|T12[1]:Transmission below 12km normalized to 1")
     344                  "|T12[1]:Transmission below 12km normalized to 1"
     345                  "|CLB[m]:Cloud base height")
    344346    {
    345347    }
Note: See TracChangeset for help on using the changeset viewer.