Menu

AlgorithmFilterXY

Rupesh Shrestha

Filtering Out Points at Same X,Y

Interpolation of a raster surface requires that no two points have the same x and y coordinates (it causes problems mathematically). If two or more points are at the same x,y location, then all the points except the lowest point (i.e., with minimum z coordinate) must be non-ground. So those higher points can be classified and removed from the list of unclassified points.

  1. for each x,y location in U0 with two or points:
  2. . . zlowest = minimum z coordinate of the points at x,y
  3. . . for each point Pj at x,y:
  4. . . . . if zj > zlowest then
  5. . . . . . . classify Pj as non-ground and remove it from U0

Related

Wiki: AlgorithmDescription