Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Jul 2, 2021
1 parent c7f94c1 commit 8d5e8fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions epf/Epf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ void Epf::fillMetadata(const pdal::PointLayoutPtr layout)
};

m_b.scale[0] = calcScale(m_b.scale[0], m_b.bounds.minx, m_b.bounds.maxx);
m_b.scale[1] = calcScale(m_b.scale[1], m_b.bounds.minx, m_b.bounds.maxx);
m_b.scale[2] = calcScale(m_b.scale[2], m_b.bounds.minx, m_b.bounds.maxx);
m_b.scale[1] = calcScale(m_b.scale[1], m_b.bounds.miny, m_b.bounds.maxy);
m_b.scale[2] = calcScale(m_b.scale[2], m_b.bounds.minz, m_b.bounds.maxz);
}

PointCount Epf::createFileInfo(const StringList& input, StringList dimNames,
Expand Down
2 changes: 1 addition & 1 deletion untwine/Untwine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void addArgs(pdal::ProgramArgs& programArgs, Options& options, pdal::Arg * &temp
programArgs.add("output_dir,o", "Output directory", options.outputDir).setPositional();
tempArg = &(programArgs.add("temp_dir", "Temp directory", options.tempDir));
programArgs.add("cube", "Make a cube, rather than a rectangular solid", options.doCube, true);
programArgs.add("level", "Set an initial tree leve, rather than guess based on data",
programArgs.add("level", "Set an initial tree level, rather than guess based on data",
options.level, -1);
programArgs.add("file_limit", "Only load 'file_limit' files, even if more exist",
options.fileLimit, (size_t)10000000);
Expand Down

0 comments on commit 8d5e8fd

Please sign in to comment.