mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 16:00:08 +00:00
Coded time motion location
This commit is contained in:
parent
b96455190f
commit
db4f37a37d
5 changed files with 322 additions and 0 deletions
90
test/source/scwx/awips/coded_time_motion_location.test.cpp
Normal file
90
test/source/scwx/awips/coded_time_motion_location.test.cpp
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
#include <scwx/awips/coded_time_motion_location.hpp>
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include <boost/log/trivial.hpp>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace awips
|
||||
{
|
||||
|
||||
static const std::string logPrefix_ =
|
||||
"[scwx::awips::coded_time_motion_location.test] ";
|
||||
|
||||
TEST(CodedTimeMotionLocation, LeadingZeroes)
|
||||
{
|
||||
using namespace std::chrono;
|
||||
|
||||
std::vector<std::string> data = {
|
||||
"TIME...MOT...LOC 0128Z 004DEG 9KT 3480 10318"};
|
||||
|
||||
CodedTimeMotionLocation tml;
|
||||
bool dataValid = tml.Parse(data);
|
||||
|
||||
ASSERT_EQ(dataValid, true);
|
||||
|
||||
EXPECT_EQ(tml.time().to_duration(), 1h + 28min);
|
||||
EXPECT_EQ(tml.direction(), 4);
|
||||
EXPECT_EQ(tml.speed(), 9);
|
||||
|
||||
auto coordinates = tml.coordinates();
|
||||
|
||||
ASSERT_EQ(coordinates.size(), 1);
|
||||
|
||||
EXPECT_DOUBLE_EQ(coordinates[0].latitude_, 34.80);
|
||||
EXPECT_DOUBLE_EQ(coordinates[0].longitude_, -103.18);
|
||||
}
|
||||
|
||||
TEST(CodedTimeMotionLocation, Stationary)
|
||||
{
|
||||
using namespace std::chrono;
|
||||
|
||||
std::vector<std::string> data = {
|
||||
"TIME...MOT...LOC 1959Z 254DEG 0KT 3253 11464"};
|
||||
|
||||
CodedTimeMotionLocation tml;
|
||||
bool dataValid = tml.Parse(data);
|
||||
|
||||
ASSERT_EQ(dataValid, true);
|
||||
|
||||
EXPECT_EQ(tml.time().to_duration(), 19h + 59min);
|
||||
EXPECT_EQ(tml.direction(), 254);
|
||||
EXPECT_EQ(tml.speed(), 0);
|
||||
|
||||
auto coordinates = tml.coordinates();
|
||||
|
||||
ASSERT_EQ(coordinates.size(), 1);
|
||||
|
||||
EXPECT_DOUBLE_EQ(coordinates[0].latitude_, 32.53);
|
||||
EXPECT_DOUBLE_EQ(coordinates[0].longitude_, -114.64);
|
||||
}
|
||||
|
||||
TEST(CodedTimeMotionLocation, TwoCoordinates)
|
||||
{
|
||||
using namespace std::chrono;
|
||||
|
||||
std::vector<std::string> data = {
|
||||
"TIME...MOT...LOC 2113Z 345DEG 42KT 2760 8211 2724 8198"};
|
||||
|
||||
CodedTimeMotionLocation tml;
|
||||
bool dataValid = tml.Parse(data);
|
||||
|
||||
ASSERT_EQ(dataValid, true);
|
||||
|
||||
EXPECT_EQ(tml.time().to_duration(), 21h + 13min);
|
||||
EXPECT_EQ(tml.direction(), 345);
|
||||
EXPECT_EQ(tml.speed(), 42);
|
||||
|
||||
auto coordinates = tml.coordinates();
|
||||
|
||||
ASSERT_EQ(coordinates.size(), 2);
|
||||
|
||||
EXPECT_DOUBLE_EQ(coordinates[0].latitude_, 27.6);
|
||||
EXPECT_DOUBLE_EQ(coordinates[0].longitude_, -82.11);
|
||||
EXPECT_DOUBLE_EQ(coordinates[1].latitude_, 27.24);
|
||||
EXPECT_DOUBLE_EQ(coordinates[1].longitude_, -81.98);
|
||||
}
|
||||
|
||||
} // namespace awips
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue