Skip to content

Commit

Permalink
Merge branch 'programmable-makes-double-dimensions' into issues/versi…
Browse files Browse the repository at this point in the history
…on-info
  • Loading branch information
hobu committed Jan 21, 2015
2 parents 4d76f38 + ec33727 commit 7a2f496
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion io/bpf/BpfWriter.cpp
Expand Up @@ -107,7 +107,6 @@ void BpfWriter::ready(PointContextRef ctx)
m_header.m_xform.m_vals[0] = m_xXform.m_scale;
m_header.m_xform.m_vals[5] = m_yXform.m_scale;
m_header.m_xform.m_vals[10] = m_zXform.m_scale;
std::cerr << "X scale = " << m_xXform.m_scale << "!\n";
}


Expand Down
2 changes: 1 addition & 1 deletion plugins/python/filters/ProgrammableFilter.cpp
Expand Up @@ -74,7 +74,7 @@ void ProgrammableFilter::addDimensions(PointContext ctx)
{
for (auto it = m_addDimensions.cbegin(); it != m_addDimensions.cend(); ++it)
{
ctx.registerDim(*it);
ctx.registerDim(*it, pdal::Dimension::Type::Double);
}
}

Expand Down

0 comments on commit 7a2f496

Please sign in to comment.