| 125 | |
| 126 | |
| 127 | PointViewSet SkewnessBalancingFilter::run(PointViewPtr input) |
| 128 | { |
| 129 | PointViewSet viewSet; |
| 130 | viewSet.insert(input); |
| 131 | |
| 132 | bool logOutput = log()->getLevel() > LogLevel::Debug1; |
| 133 | if (logOutput) |
| 134 | log()->floatPrecision(8); |
| 135 | |
| 136 | processGround(input); |
| 137 | |
| 138 | return viewSet; |
| 139 | } |
| 140 | |
| 141 | } // namespace pdal |
nothing calls this directly
no test coverage detected