mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 22:30:06 +00:00
- Latitude/longitude in degrees N/S/E/W - Radar types with hyphens - Sort by raw decimal values
26 lines
342 B
C++
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
|