mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 13:20:05 +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
 |