Skip to content

Commit

Permalink
Merge pull request #31 from rickhg12hs/fix-laskernel
Browse files Browse the repository at this point in the history
Fix #29: las2las: error interpreting --maxx clause
  • Loading branch information
hobu committed May 1, 2014
2 parents b8799e5 + 8ddf58e commit 465eecf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/laskernel.cpp
@@ -1,4 +1,3 @@

#include "laskernel.hpp"

bool OptechScanAngleFixer::transform(liblas::Point& p)
Expand Down Expand Up @@ -538,7 +537,7 @@ std::vector<liblas::FilterPtr> GetFilters(po::variables_map vm, bool verbose)
std::cout << "Setting miny to: " << miny << std::endl;
}

if (vm.count("maxx"))
if (vm.count("maxy"))
{
double maxy = vm["maxy"].as< double >();
(extent.max)(1, maxy);
Expand Down

0 comments on commit 465eecf

Please sign in to comment.