Skip to content

Commit

Permalink
default to use_eb_vlr=true for readers.las
Browse files Browse the repository at this point in the history
  • Loading branch information
uclaros committed Jul 5, 2024
1 parent 37b6cca commit 6862889
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions epf/Epf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,10 @@ void Epf::createFileInfos(const StringList& input, std::vector<FileInfo>& fileIn
pdal::Options opts;
opts.add("filename", filename);
if (driver == "readers.las")
{
opts.add("nosrs", m_b.opts.no_srs);
opts.add("use_eb_vlr", "true");
}
s->setOptions(opts);

FileInfo fi;
Expand Down
1 change: 1 addition & 0 deletions epf/FileProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ void FileProcessor::run()
if (m_fi.driver == "readers.las")
{
opts.add("nosrs", m_fi.no_srs);
opts.add("use_eb_vlr", "true");
#ifdef PDAL_LAS_START
opts.add("start", m_fi.start);
#endif
Expand Down

0 comments on commit 6862889

Please sign in to comment.