Commit 24b4e769 authored by Ken Edmundson's avatar Ken Edmundson
Browse files

modified to not output points with no measures

parent f18c8003
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -113,6 +113,10 @@ void IsisMain() {
      }
    }
    
    if (lidarPoint->GetNumMeasures() <= 0) {
      continue;
    }
    
    lidarDataSet.insert(QSharedPointer<LidarControlPoint>(lidarPoint));
  }