43 using Base::evaluateError;
65 : Base(model, key, baroKey), nT_(heightOut(baroIn)) {}
68 gtsam::NonlinearFactor::shared_ptr
clone()
const override {
70 gtsam::NonlinearFactor::shared_ptr(
new This(*
this)));
75 const std::string& s =
"",
76 const KeyFormatter& keyFormatter = DefaultKeyFormatter)
const override;
80 double tol = 1e-9)
const override;
83 Vector evaluateError(
const Pose3& p,
const double& b,
86 inline const double& measurementIn()
const {
return nT_; }
88 inline double heightOut(
double n)
const {
90 return (std::pow(n / 101.29, 1. / 5.256) * 288.08 - 273.1 - 15.04) /
94 inline double baroOut(
const double& meters) {
95 double temp = 15.04 - 0.00649 * meters;
96 return 101.29 * std::pow(((temp + 273.1) / 288.08), 5.256);
100 #ifdef GTSAM_ENABLE_BOOST_SERIALIZATION 101 friend class boost::serialization::access; 103 template <
class ARCHIVE>
104 void serialize(ARCHIVE& ar,
const unsigned int ) {
106 ar& boost::serialization::make_nvp(
108 boost::serialization::base_object<Base>(*
this));
109 ar& BOOST_SERIALIZATION_NVP(nT_);
Definition: NonlinearFactor.h:431
BarometricFactor(Key key, Key baroKey, const double &baroIn, const SharedNoiseModel &model)
Constructor from a measurement of pressure in KPa.
Definition: BarometricFactor.h:63
std::string serialize(const T &input)
serializes to a string
Definition: serialization.h:113
gtsam::NonlinearFactor::shared_ptr clone() const override
Definition: BarometricFactor.h:68
Definition: NonlinearFactor.h:68
Definition: Testable.h:112
BarometricFactor()
Definition: BarometricFactor.h:52
Matrix * OptionalMatrixType
Definition: NonlinearFactor.h:55
BarometricFactor This
Typedef to this class.
Definition: BarometricFactor.h:49
std::shared_ptr< BarometricFactor > shared_ptr
shorthand for a smart pointer to a factor
Definition: BarometricFactor.h:46
GTSAM_EXPORT void print(const Matrix &A, const std::string &s, std::ostream &stream)
Navigation state composing of attitude, position, and velocity.
std::function< std::string(Key)> KeyFormatter
Typedef for a function to format a key, i.e. to convert it to a string.
Definition: Key.h:35
Definition: chartTesting.h:28
Non-linear factor base classes.
Definition: BarometricFactor.h:34
std::uint64_t Key
Integer nonlinear key type.
Definition: types.h:102
noiseModel::Base::shared_ptr SharedNoiseModel
Definition: NoiseModel.h:741