9#include <isce3/core/EMatrix.h>
10#include <isce3/core/Ellipsoid.h>
11#include <isce3/core/Linspace.h>
12#include <isce3/core/Orbit.h>
13#include <isce3/core/Poly1d.h>
14#include <isce3/geometry/DEMInterpolator.h>
16namespace isce3 {
namespace antenna {
32 using RowMatrixXcf = isce3::core::EMatrix2D<std::complex<float>>;
36 using tuple4_t = std::tuple<Eigen::ArrayXd, isce3::core::Linspace<double>,
37 Eigen::ArrayXd, Eigen::ArrayXd>;
38 using tuple5_t = std::tuple<Eigen::ArrayXd, isce3::core::Linspace<double>,
68 bool center_scale_pf =
false);
116 double sr_spacing,
double chirp_rate,
double chirp_dur,
117 std::optional<double> az_time = {},
int size_avg = 8,
118 bool inc_corr =
true)
const;
152 double sr_spacing,
double chirp_rate,
double chirp_dur,
153 std::optional<double> az_time = {},
int size_avg = 8,
154 bool inc_corr =
true)
const;
161 double winPed()
const {
return _win_ped; }
187 tuple4_t _getCalibPowLinear(
const Eigen::Ref<const RowMatrixXcf>& echo_mat,
188 double sr_spacing,
double chirp_rate,
double chirp_dur,
189 std::optional<double> az_time,
int size_avg,
bool inc_corr)
const;
200 bool _center_scale_pf;
Data structure to store Ellipsoid information.
Definition Ellipsoid.h:20
ElPatternEst(double sr_start, const isce3::core::Orbit &orbit, const isce3::geometry::DEMInterpolator &dem_interp)
A more concise constructor of key inputs.
Definition ElPatternEst.h:77
double winPed() const
Get raised-cosine window pedestal set at the constructor.
Definition ElPatternEst.h:161
tuple5_t powerPattern2way(const Eigen::Ref< const RowMatrixXcf > &echo_mat, double sr_spacing, double chirp_rate, double chirp_dur, std::optional< double > az_time={}, int size_avg=8, bool inc_corr=true) const
Estimated averaged two-way time-series power pattern in Elevation from 2-D raw echo data uniformly sa...
Definition ElPatternEst.cpp:33
ElPatternEst(double sr_start, const isce3::core::Orbit &orbit, int polyfit_deg=6, const isce3::geometry::DEMInterpolator &dem_interp={}, double win_ped=0.0, const isce3::core::Ellipsoid &ellips={}, bool center_scale_pf=false)
A constructor with full input arguments.
Definition ElPatternEst.cpp:14
int polyfitDeg() const
Get degree of polyfit set at the constructor.
Definition ElPatternEst.h:168
tuple5_t powerPattern1way(const Eigen::Ref< const RowMatrixXcf > &echo_mat, double sr_spacing, double chirp_rate, double chirp_dur, std::optional< double > az_time={}, int size_avg=8, bool inc_corr=true) const
Estimated averaged one-way time-series power pattern in Elevation from 2-D raw echo data uniformly sa...
Definition ElPatternEst.cpp:52
bool isCenterScalePolyfit() const
Check whether the polyfit process is centeralized and scaled.
Definition ElPatternEst.h:174
Data structure to store Ellipsoid information.
Definition Ellipsoid.h:20
A uniformly-spaced sequence of values over some interval.
Definition Linspace.h:9
Sequence of platform ephemeris samples (state vectors) with uniform temporal spacing,...
Definition Orbit.h:44
Data structure for representing 1D polynomials.
Definition Poly1d.h:23
Definition DEMInterpolator.h:25
base interpolator is an abstract base class
Definition BinarySearchFunc.cpp:5