Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into document-automation
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Apr 11, 2016
2 parents 3104178 + 6075f39 commit 7830dff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions RELEASENOTES.txt
Expand Up @@ -12,6 +12,10 @@ Fixes:

- A failure that may have resulted when using filters.hexbin to calculate
density in the southern hemisphere has been corrected.
- A failure to create the index file with 'pdal tindex' and GDAL 2.X has
been fixed.
- The '--tindex' option for the 'pdal tindex' command is now a positional
option as specified in the documentation.

1.2.0:

Expand Down
2 changes: 1 addition & 1 deletion kernels/tindex/TIndexKernel.cpp
Expand Up @@ -94,7 +94,7 @@ TIndexKernel::TIndexKernel()
void TIndexKernel::addSwitches(ProgramArgs& args)
{
args.add("tindex", "OGR-readable/writeable tile index output",
m_idxFilename);
m_idxFilename).setPositional();
args.add("filespec", "Build: Pattern of files to index. "
"Merge: Output filename", m_filespec).setPositional();
args.add("fast_boundary", "Use extent instead of exact boundary",
Expand Down

0 comments on commit 7830dff

Please sign in to comment.