Changeset 18974 for trunk


Ignore:
Timestamp:
04/05/18 18:57:28 (6 years ago)
Author:
tbretz
Message:
Reaplced an 8-bit ascii charcter by its unicode representation.
Location:
trunk/FACT++/src
Files:
2 edited

Legend:

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

    r18523 r18974  
    186186                << "/" << data.fT12
    187187                << " H="  << data.fCloudBaseHeight/1000 << "km"
    188                 << " Zd="  << data.fZd  << "°"
    189                 << " Az="  << data.fAz  << "°";
     188                << " Zd="  << data.fZd  << "\u00b0"
     189                << " Az="  << data.fAz  << "\u00b0";
    190190            Message(msg);
    191191
  • trunk/FACT++/src/magicweather.cc

    r16727 r18974  
    168168            ostringstream msg;
    169169            msg << tm.GetAsStr("%H:%M:%S") << "[" << data.fStatus << "]:"
    170                 << " T="    << data.fTemp  << "°C"
     170                << " T="    << data.fTemp  << "\u00b0C"
    171171                << " H="    << data.fHum   << "%"
    172172                << " P="    << data.fPress << "hPa"
    173                 << " Td="   << data.fDew   << "°C"
     173                << " Td="   << data.fDew   << "\u00b0C"
    174174                << " V="    << data.fWind  << "km/h"
    175175                << " Vmax=" << data.fGusts << "km/h"
    176                 << " dir="  << data.fDir   << "°";
     176                << " dir="  << data.fDir   << "\u00b0";
    177177            Message(msg);
    178178
Note: See TracChangeset for help on using the changeset viewer.