Skip to content

Commit

Permalink
fetch edge_size and density from HexGrid
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Nov 29, 2015
1 parent a979afe commit 84a0915
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/hexbin/filters/HexBin.cpp
Expand Up @@ -105,10 +105,10 @@ void HexBin::done(PointTableRef table)
}
offsets << ")";

m_metadata.add("edge_length", m_edgeLength, "The edge length of the "
m_metadata.add("edge_length", m_grid->height(), "The edge length of the "
"hexagon to use in situations where you do not want to estimate "
"based on a sample");
m_metadata.add("threshold", m_density, "Minimum number of points inside "
m_metadata.add("threshold", m_grid->denseLimit(), "Minimum number of points inside "
"a hexagon to be considered full");
m_metadata.add("sample_size", m_sampleSize, "Number of samples to use "
"when estimating hexagon edge size. Specify 0.0 or omit options "
Expand Down

0 comments on commit 84a0915

Please sign in to comment.