| 291 | } |
| 292 | |
| 293 | void GeoreferenceFilter::filter(PointView& view) |
| 294 | { |
| 295 | PointRef point(view, 0); |
| 296 | for (PointId idx = 0; idx < view.size(); ++idx) |
| 297 | { |
| 298 | point.setPointId(idx); |
| 299 | processOne(point); |
| 300 | } |
| 301 | view.invalidateProducts(); |
| 302 | } |
| 303 | |
| 304 | } // namespace pdal |
nothing calls this directly
no test coverage detected