Skip to content

Commit

Permalink
Review changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Feb 12, 2020
1 parent 5c891e4 commit 2cca5ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
4 changes: 2 additions & 2 deletions doc/stages/filters.hag_delaunay.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ elevation is
::

$ pdal translate autzen.laz autzen-height-as-Z-smrf.bpf \
smrf hag_delanay ferry \
smrf hag_delaunay ferry \
--filters.ferry.dimensions="HeightAboveGround=Z" \
--filters.hag_delanay.count=15
--filters.hag_delaunay.count=15

Options
-------------------------------------------------------------------------------
Expand Down
3 changes: 0 additions & 3 deletions filters/HagDelaunayFilter.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
/******************************************************************************
* Copyright (c) 2016, Bradley J Chambers (brad.chambers@gmail.com)
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following
Expand Down
7 changes: 3 additions & 4 deletions test/unit/filters/HAGFilterTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ TEST(HAGFilterTest, delaunay)

Options fo;
fo.add("count", 10);
fo.add("delaunay", true);
Stage& f = *(factory.createStage("filters.hag"));
Stage& f = *(factory.createStage("filters.hag_delaunay"));
f.setInput(r);
f.setOptions(fo);

Expand Down Expand Up @@ -105,7 +104,7 @@ TEST(HAGFilterTest, neighbors)

Options fo;
fo.add("count", 2);
Stage& f = *(factory.createStage("filters.hag"));
Stage& f = *(factory.createStage("filters.hag_nn"));
f.setInput(r);
f.setOptions(fo);

Expand Down Expand Up @@ -154,7 +153,7 @@ TEST(HAGFilterTest, closest)

Options fo;
fo.add("count", 1);
Stage& f = *(factory.createStage("filters.hag"));
Stage& f = *(factory.createStage("filters.hag_nn"));
f.setInput(r);
f.setOptions(fo);

Expand Down

0 comments on commit 2cca5ae

Please sign in to comment.