Changeset 18338 for trunk


Ignore:
Timestamp:
09/30/15 10:51:13 (9 years ago)
Author:
tbretz
Message:
Adapted to the latest changed on the TNG weather report web site and to its new location.
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/HeadersTNGWeather.h

    r16960 r18338  
    1818        DimWeather() { memset(this, 0, sizeof(DimWeather)); }
    1919
    20         float fTemp10M;
    21         float fTemp5M;
    22         float fTemp2M;
    23         float fTempGround;
    24         float fDewPoint;
    25         float fHumidity;
    26         float fAirPressure;
    27         float fWindSpeed;
    28         float fWindDirection;
    29         float fDeltaM1;
    30         float fDustTotal;
    31         float fSeeingMed;
    32         float fSeeingStdev;
    33         float fSolarimeter;
     20        float  fTemperature;
     21        float  fDewPoint;
     22        float  fHumidity;
     23        float  fAirPressure;
     24        float  fTrend;
     25        float  fWindSpeed;
     26        float  fWindDirection;
     27        float  fDustTotal;
     28        double fSeeingMjd;
     29        float  fSeeing;
     30        float  fSeeingMed;
     31        float  fSeeingStdev;
     32        float  fSolarimeter;
    3433
    3534    } __attribute__((__packed__));
  • trunk/FACT++/src/tngweather.cc

    r16955 r18338  
    138138            Out() << "Parsed:\n-------\n" << doc.toString().toStdString() << endl;
    139139
    140         const QDomElement root = doc.documentElement();
    141         const QDomElement item = root.firstChildElement("item");
    142 
     140        const QDomElement root    = doc.documentElement();
     141        const QDomElement channel = root.firstChildElement("channel");
     142        const QDomElement item    = channel.firstChildElement("item");
     143
     144        const QDomElement see   = item.firstChildElement("tngw:dimmSeeing");
     145        const QDomElement mjd   = item.firstChildElement("tngw:dimmSeeing.date");
    143146        const QDomElement med   = item.firstChildElement("tngw:dimmSeeing.median");
    144147        const QDomElement sdev  = item.firstChildElement("tngw:dimmSeeing.stdev");
    145148        const QDomElement dust  = item.firstChildElement("tngw:dustTotal");
    146         const QDomElement delta = item.firstChildElement("tngw:deltaM1");
     149        const QDomElement trend = item.firstChildElement("tngw:trend");
    147150        const QDomElement pres  = item.firstChildElement("tngw:airPressure");
    148151        const QDomElement dew   = item.firstChildElement("tngw:dewPoint");
     
    150153        const QDomElement speed = item.firstChildElement("tngw:windSpeed");
    151154        const QDomElement hum   = item.firstChildElement("tngw:hum");
    152         const QDomElement tmp0  = item.firstChildElement("tngw:tempGround");
    153         const QDomElement tmp2  = item.firstChildElement("tngw:temp2M");
    154         const QDomElement tmp5  = item.firstChildElement("tngw:temp5M");
    155         const QDomElement tmp10 = item.firstChildElement("tngw:temp10M");
     155        const QDomElement tmp   = item.firstChildElement("tngw:temperature");
    156156        const QDomElement solar = item.firstChildElement("tngw:solarimeter");
    157157        const QDomElement date  = item.firstChildElement("tngw:date");
    158158
    159         if (med.isNull()  || sdev.isNull()  || dust.isNull()  || delta.isNull() ||
    160             pres.isNull() || dew.isNull()   || wdir.isNull()  || speed.isNull() ||
    161             hum.isNull()  || hum.isNull()   || tmp0.isNull()  || tmp2.isNull()  ||
    162             tmp5.isNull() || tmp10.isNull() || solar.isNull() || date.isNull())
     159        if (see.isNull()  || mjd.isNull()   || med.isNull()  || sdev.isNull() ||
     160            dust.isNull() || trend.isNull() || pres.isNull() || dew.isNull() ||
     161            wdir.isNull() || speed.isNull() || hum.isNull()  || tmp.isNull()  ||
     162            solar.isNull()|| date.isNull())
    163163        {
    164164            Warn("Parsing of xml failed [1].");
     
    168168
    169169        DimWeather w;
     170        w.fSeeingMjd     = Time(mjd.text().toStdString()).Mjd();
     171        w.fSeeing        = see  .text().toFloat();
    170172        w.fSeeingMed     = med  .text().toFloat();
    171173        w.fSeeingStdev   = sdev .text().toFloat();
    172174        w.fDustTotal     = dust .text().toFloat();
    173         w.fDeltaM1       = delta.text().toFloat();
     175        w.fTrend         = trend.text().toFloat();
    174176        w.fAirPressure   = pres .text().toFloat();
    175177        w.fDewPoint      = dew  .text().toFloat();
     
    177179        w.fWindSpeed     = speed.text().toFloat()*3.6;
    178180        w.fHumidity      = hum  .text().toFloat();
    179         w.fTempGround    = tmp0 .text().toFloat();
    180         w.fTemp2M        = tmp2 .text().toFloat();
    181         w.fTemp5M        = tmp5 .text().toFloat();
    182         w.fTemp10M       = tmp10.text().toFloat();
     181        w.fTemperature   = tmp  .text().toFloat();
    183182        w.fSolarimeter   = solar.text().toFloat();
    184183
     
    203202            Out() << endl;
    204203            Out() << "Date:           " << time             << endl;
     204            Out() << "Seeing:         " << w.fSeeing << " [" << Time(w.fSeeingMjd) << "]" << endl;
    205205            Out() << "Seeing:         " << w.fSeeingMed << " +- " << w.fSeeingStdev << endl;
    206206            Out() << "DustTotal:      " << w.fDustTotal     << endl;
    207             Out() << "DeltaM1:        " << w.fDeltaM1       << endl;
    208207            Out() << "AirPressure:    " << w.fAirPressure   << endl;
     208            Out() << "Trend:          " << w.fTrend         << endl;
    209209            Out() << "DewPoint:       " << w.fDewPoint      << endl;
    210210            Out() << "WindDirection:  " << w.fWindDirection << endl;
    211211            Out() << "WindSpeed:      " << w.fWindSpeed     << endl;
    212212            Out() << "Humidity:       " << w.fHumidity      << endl;
    213             Out() << "TempGround:     " << w.fTempGround    << endl;
    214             Out() << "Temp2M:         " << w.fTemp2M        << endl;
    215             Out() << "Temp5M:         " << w.fTemp5M        << endl;
    216             Out() << "Temp10M:        " << w.fTemp10M       << endl;
     213            Out() << "Temperature:    " << w.fTemperature   << endl;
    217214            Out() << "Solarimeter:    " << w.fSolarimeter   << endl;
    218215            Out() << endl;
     
    247244        const string cmd =
    248245            "GET "+fSite+" HTTP/1.1\r\n"
     246            "User-Agent: FACT tngweather\r\n"
    249247            "Accept: */*\r\n"
    250             "Content-Type: application/octet-stream\r\n"
     248            "Host: "+Address()+"\r\n"
     249            "Connection: close\r\n"//Keep-Alive\r\n"
     250            "Content-Type: application/rss+xml\r\n"
    251251            "User-Agent: FACT\r\n"
    252             "Host: www.fact-project.org\r\n"
    253252            "Pragma: no-cache\r\n"
    254253            "Cache-Control: no-cache\r\n"
    255254            "Expires: 0\r\n"
    256             "Connection: Keep-Alive\r\n"
    257255            "Cache-Control: max-age=0\r\n"
    258256            "\r\n";
     
    378376    ConnectionDimWeather(ba::io_service& ioservice, MessageImp &imp) :
    379377        ConnectionWeather(ioservice, imp),
    380         fDimWeather("TNG_WEATHER/DATA", "F:1;F:1;F:1;F:1;F:1;F:1;F:1;F:1;F:1;F:1;F:1;F:1;F:1;F:1",
    381                      "|T_10M[deg C]:Temperature 10m above ground"
    382                      "|T_5M[deg C]:Temperature 5m above ground"
    383                      "|T_2M[deg C]:Temperature 2m above ground"
    384                      "|T_0[deg C]:Temperature at ground"
     378        fDimWeather("TNG_WEATHER/DATA", "F:1;F:1;F:1;F:1;F:1;F:1;F:1;F:1;D:1;F:1;F:1;F:1;F:1",
     379                     "|T[deg C]:Temperature"
    385380                     "|T_dew[deg C]:Dew point"
    386381                     "|H[%]:Humidity"
    387382                     "|P[mbar]:Air pressure"
     383                     "|Trend"
    388384                     "|v[km/h]:Wind speed"
    389385                     "|d[deg]:Wind direction (N-E)"
    390                      "|DeltaM1"
    391386                     "|Dust[ug/m^3]:Dust (total)"
     387                     "|SeeingDate[mjd]:Seeing MJD"
     388                     "|Seeing[arcsec]:Seeing"
    392389                     "|Seeing[arcsec]:Seeing Median"
    393390                     "|SeeingStdev[arcsec]:Seeing Stdev"
     
    522519        ("no-dim,d",  po_switch(),    "Disable dim services")
    523520        ("addr,a",  var<string>("tngweb.tng.iac.es:80"),  "Network address of Cosy")
    524         ("url,u",  var<string>("/weather/rss/"),  "File name and path to load")
     521        ("url,u",  var<string>("/api/meteo/weather/feed.xml"),  "File name and path to load")
    525522        ("quiet,q", po_bool(true),  "Disable printing contents of all received messages (except dynamic data) in clear text.")
    526523        ("interval,i", var<uint16_t>(300), "Interval between two updates on the server in seconds")
Note: See TracChangeset for help on using the changeset viewer.