WSF
AOrbit.hpp
Go to the documentation of this file.
1// ****************************************************************************
2// CUI
3//
4// The Advanced Framework for Simulation, Integration, and Modeling (AFSIM)
5//
6// Copyright 2019 Infoscitex, a DCS Company. All rights reserved.
7//
8// The use, dissemination or disclosure of data in this file is subject to
9// limitation or restriction. See accompanying README and LICENSE for details.
10// ****************************************************************************
11
12#ifndef AORBIT_HPP
13#define AORBIT_HPP
14
15#include "usmtf_export.h"
16
17#include <string>
18
19#include "Field.hpp"
20#include "LatLon.hpp"
21#include "OrbitAlignment.hpp"
22#include "Radius.hpp"
23#include "Set.hpp"
24#include "UtLLPos.hpp"
25#include "Validatable.hpp"
26
27namespace usmtf
28{
34
37
41
44class USMTF_EXPORT AOrbit : public Set
45{
46public:
47 AOrbit(const std::string& aSTF, const std::vector<Field>& aFields) noexcept;
48 const LatLon& GetFirstOrbitPoint() const noexcept;
49 const LatLon& GetSecondOrbitPoint() const noexcept;
51 const Radius& GetWidth() const noexcept;
53 std::vector<UtLLPos> GetAlignmentOffsetPoints() const noexcept;
54
55private:
56 LatLon mFirstOrbitPoint;
57 LatLon mSecondOrbitPoint;
58 Radius mWidth;
59 OrbitAlignment mOrbitAlignment;
60};
61} // namespace usmtf
62
63#endif
const LatLon & GetSecondOrbitPoint() const noexcept
Definition AOrbit.cpp:52
AOrbit(const std::string &aSTF, const std::vector< Field > &aFields) noexcept
Definition AOrbit.cpp:20
const LatLon & GetFirstOrbitPoint() const noexcept
Definition AOrbit.cpp:46
std::vector< UtLLPos > GetAlignmentOffsetPoints() const noexcept
Calculates the polygonal shape positions as well the offset circle centers based on alignment.
Definition AOrbit.cpp:62
const Radius & GetWidth() const noexcept
The width is the width of the polygon portion of the shape.
Definition AOrbit.cpp:57
B.POSITION OR ROUTE POINT, LAT / LONG, SECONDS.
Definition LatLon.hpp:78
Definition OrbitAlignment.hpp:34
USMTF Excerpt:
Definition Radius.hpp:44
Set(const std::string &aSTF, const std::vector< Field > &aFields) noexcept
Definition Set.cpp:22
Definition Acmid.cpp:17
Copyrights Multiple, All Rights Reserved