1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
// XWeatherCtrl.cpp: Body of the XWeatherCtrl class.
//
//////////////////////////////////////////////////////////////////////
#include "XWeatherCtrl.h"
#include <stdio.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
XWeatherCtrl::XWeatherCtrl()
{
}
XWeatherCtrl::~XWeatherCtrl()
{
}
void XWeatherCtrl::OnPacketReceived(CigiBasePacket *Packet)
{
CigiWeatherCtrlV3 *InPckt = (CigiWeatherCtrlV3 *)Packet;
printf("===> WeatherCtrl.h <===\n");
printf("EntityID ==> %d\n",InPckt->GetEntityID());
printf("LayerID ==> %d\n",InPckt->GetLayerID());
printf("Humidity ==> %d\n",InPckt->GetHumidity());
printf("WeatherEn ==> %d\n",InPckt->GetWeatherEn());
printf("ScudEn ==> %d\n",InPckt->GetScudEn());
printf("RandomWindsEn ==> %d\n",InPckt->GetRandomWindsEn());
printf("RandomLightningEn ==> %d\n",InPckt->GetRandomLightningEn());
printf("CloudType ==> %d\n",InPckt->GetCloudType());
printf("Scope ==> %d\n",InPckt->GetScope());
printf("Severity ==> %d\n",InPckt->GetSeverity());
printf("AirTemp ==> %f\n",InPckt->GetAirTemp());
printf("VisibilityRng ==> %f\n",InPckt->GetVisibilityRng());
printf("ScudFreq ==> %f\n",InPckt->GetScudFreq());
printf("Coverage ==> %f\n",InPckt->GetCoverage());
printf("BaseElev ==> %f\n",InPckt->GetBaseElev());
printf("Thickness ==> %f\n",InPckt->GetThickness());
printf("Transition ==> %f\n",InPckt->GetTransition());
printf("HorizWindSp ==> %f\n",InPckt->GetHorizWindSp());
printf("VertWindSp ==> %f\n",InPckt->GetVertWindSp());
printf("WindDir ==> %f\n",InPckt->GetWindDir());
printf("BaroPress ==> %f\n",InPckt->GetBaroPress());
printf("Aerosol ==> %f\n",InPckt->GetAerosol());
}
|