Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix chunk table. #69

Merged
merged 2 commits into from
Sep 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Untwine

Untwine is software from [Hobu, Inc.](https://hobu.co) for creating [Entwine Point Tile](https://entwine.io/entwine-point-tile.html) (EPT)
Untwine is software from [Hobu, Inc.](https://hobu.co) for creating [Entwine Point Tile](https://entwine.io/entwine-point-tile.html) (EPT)
web services from [PDAL](https://pdal.io)-readable point cloud data sources. It
provides an alternative processing approach than the [Entwine](https://entwine.io)
software, but the output is expected to be compatible EPT.
Expand All @@ -9,7 +9,8 @@ software, but the output is expected to be compatible EPT.
License
-------

Untwine is licensed under the GPLv3. Commercial licensing is possible by contacting Hobu, Inc. for pricing.
Untwine is licensed under the GPLv3. Commercial licensing is possible by contacting
Hobu, Inc. for pricing.

Building Untwine:
--------
Expand Down Expand Up @@ -74,5 +75,12 @@ Options

- stats

Generate summary statistics in 'ept.json' similar to those produced by Entwine.
Generate summary statistics in 'ept.json' similar to those produced by Entwine for EPT output
Min/max stats are always generated when generating single-file output.
[Default: false]

- single_file

Generate a LAZ file with spatially arranged data and hierarchy information
[(COPC)](https://github.com/copcio/copcio.github.io). [Default: false]

2 changes: 1 addition & 1 deletion bu/CopcSupport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ void CopcSupport::writeHeader()

void CopcSupport::writeChunkTable()
{
m_chunkTable.resize(m_chunkTable.size() - 1);
m_chunkTable.resize(m_chunkTable.size());

// Write chunk table offset
pdal::OLeStream out(&m_f);
Expand Down