supercell-wx/wxdata/include/scwx/common/characters.hpp
Dan Paulat 6e7a13494a Updating radar site display fields to be more human-friendly
- Latitude/longitude in degrees N/S/E/W
- Radar types with hyphens
- Sort by raw decimal values
2022-10-07 22:29:30 -05:00

26 lines
342 B
C++

#pragma once
#include <string>
namespace scwx
{
namespace common
{
namespace Characters
{
constexpr char DEGREE = static_cast<char>(0xb0);
constexpr char ETX = static_cast<char>(0x03);
} // namespace Characters
namespace Unicode
{
extern const std::string kDegree;
} // namespace Unicode
} // namespace common
} // namespace scwx