AltitudeWindData.h 541 B

123456789101112131415161718192021222324
  1. /*
  2. * @brief Defines the wind data
  3. * @file aman/types/WindData.h
  4. * @author Sven Czarnian <devel@svcz.de>
  5. * @copyright Copyright 2021 Sven Czarnian
  6. * @license This project is published under the GNU General Public License v3 (GPLv3)
  7. */
  8. #pragma once
  9. #include <aman/types/Quantity.hpp>
  10. namespace aman {
  11. struct AltitudeWindData {
  12. Length altitude;
  13. Angle direction;
  14. Velocity speed;
  15. AltitudeWindData() :
  16. altitude(),
  17. direction(),
  18. speed() { }
  19. };
  20. }