<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;
        mso-fareast-language:EN-US;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
span.EmailStyle21
        {mso-style-type:personal-compose;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri",sans-serif;
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-CA" link="#0563C1" vlink="#954F72" style="word-wrap:break-word">
<div class="WordSection1">
<p class="MsoNormal"><span lang="EN-US">Hi,<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">A number of questions, I’ll try to keep them clear.  Currently I have c++ software using Liblas that generates points, then writes the points to a las file.  Since Liblas is old and no longer supported (and because we
 are considering Las 1.4 format), we are trying to migrate to PDAL.  However, it seems there is minimal documentation regarding writing code with PDAL, it seems focused on using precompiled tools on json pipelines, and the Liblas to Pdal transition guide doesn’t
 discuss output.  The C++ API pages for classes such as PointTable or PointView are blank.<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">I felt our application is most similar to the example at
<a href="https://pdal.io/development/writing.html">https://pdal.io/development/writing.html</a>.  I have mimicked this to create a table and a view, and instead of writing points immediately to a file, I add points to the table and then after completing all
 points I create the writer and execute it.<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">First question, the example has the comment “Set second argument to 'true' to let factory take ownership of stage and facilitate clean up.”  But the command that follows doesn’t allow a second argument, is this just an
 error in the example or leftover from an old version of pdal, or did I miss something?<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">Second question, the example uses a StageFactory to create a “writers.las” stage.  I’ve also found that I could just use a LasWriter instead.  Any reason to prefer one style over the other?<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">Last question (for now), Previously in Liblas when writing points individually as they were created, I could make a decent progress bar which would reach 100% when the creation of the las file was complete.  Now I can
 still have a progress bar for populating the PointTable, but then the writer execute step takes a long time so it sits at 100% for a couple minutes before continuing.  Is there any way to stream the writing?  Or is that only possible when working with a pipeline? 
 I’ve seen classes like FixedPointTable used elsewhere, but there’s no documentation on this class or how to make use of it.  And I see the BufferReader used to read the Point Table is not streamable, but it is the only option or are there other ways to pull
 from the point table in a streaming fashion?<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US">Thanks for your help,<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p> </o:p></span></p>
</div>
</body>
</html>