We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33353ce commit 94f5c57Copy full SHA for 94f5c57
src/LAS.cpp
@@ -352,8 +352,9 @@ NumericVector LAS::compute_range(DataFrame flightlines)
352
// Compute the median sensor elevation then average range for this sensor
353
// elevation. This gives a rough idea of the expected range and allows for
354
// detecting failure and bad computations
355
- double median_z_sensor = Rcpp::median(z);
356
- double R_control = mean(median_z_sensor - Z);
+ //double median_z_sensor = Rcpp::median(z);
+ //double R_control = mean(median_z_sensor - Z);
357
+ double R_control = DBL_MAX;
358
359
NumericVector R(npoints);
360
0 commit comments