Changeset 18505 for trunk/FACT++/src/magiclidar.cc
- Timestamp:
- 05/23/16 08:19:36 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/magiclidar.cc
r16727 r18505 112 112 try 113 113 { 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)); 116 116 if (line.substr(0, 2)=="AZ") 117 117 data.fAz = stof(line.substr(2)); … … 132 132 if (line.substr(0, 3)=="T12") 133 133 data.fT12 = stof(line.substr(3)); 134 135 if (line.substr(0, 3)=="CLB") 136 data.fCloudBaseHeight = stof(line.substr(3)); 134 137 135 138 if (line.substr(0, 4)=="HOUR") … … 182 185 << "/" << data.fT9 183 186 << "/" << data.fT12 187 << " H=" << data.fCloudBaseHeight/1000 << "km" 184 188 << " Zd=" << data.fZd << "°" 185 189 << " Az=" << data.fAz << "°"; … … 332 336 ConnectionDimLidar(ba::io_service& ioservice, MessageImp &imp) : 333 337 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", 335 339 "|Zd[deg]:Pointing direction zenith distance" 336 340 "|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"340 341 "|T3[1]:Transmission below 3km normalized to 1" 341 342 "|T6[1]:Transmission below 6km normalized to 1" 342 343 "|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") 344 346 { 345 347 }
Note:
See TracChangeset
for help on using the changeset viewer.