25 lines
		
	
	
		
			541 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			541 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * @brief Defines the wind data
 | 
						|
 * @file aman/types/WindData.h
 | 
						|
 * @author Sven Czarnian <devel@svcz.de>
 | 
						|
 * @copyright Copyright 2021 Sven Czarnian
 | 
						|
 * @license This project is published under the GNU General Public License v3 (GPLv3)
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <aman/types/Quantity.hpp>
 | 
						|
 | 
						|
namespace aman {
 | 
						|
    struct AltitudeWindData {
 | 
						|
        Length   altitude;
 | 
						|
        Angle    direction;
 | 
						|
        Velocity speed;
 | 
						|
 | 
						|
        AltitudeWindData() :
 | 
						|
                altitude(),
 | 
						|
                direction(),
 | 
						|
                speed() { }
 | 
						|
    };
 | 
						|
}
 |