Elaboradar  0.1

◆ Scans()

template<typename T >
template<typename OT >
radarelab::volume::Scans< T >::Scans ( const Scans< OT > &  v,
const T &  default_value 
)
inline

Constructor Copy from another Scans.

Parametri
[in]v- Scans object to be copied
[in]default_value- default to be used

Definizione alla linea 286 del file volume.h.

287  {
288  this->quantity = v.quantity;
289  this->units = v.units;
290  this->load_info = v.load_info;
291  this->reserve(v.size());
292  this->radarSite = v.radarSite;
293  for (const auto& src_scan : v)
294  this->push_back(PolarScan<T>(src_scan, default_value));
295  this->offset=v.offset;
296  }
RadarSite radarSite
RadarSite.
Definition: volume.h:272
std::string units
Data units according to ODIM documentation.
Definition: volume.h:268
T offset
Data Offset.
Definition: volume.h:274
std::string quantity
Odim quantity name.
Definition: volume.h:266
std::shared_ptr< LoadInfo > load_info
Polar volume information.
Definition: volume.h:270

Referenzia radarelab::volume::Scans< T >::load_info, radarelab::volume::Scans< T >::offset, radarelab::volume::Scans< T >::quantity, radarelab::volume::Scans< T >::radarSite, e radarelab::volume::Scans< T >::units.