<div dir="ltr"><div>Hello Jelto,</div><div><br></div><div>looks like you are trying to generate DTM from las file. Can you try the method provided in this documentation.</div><div><br></div><div><a href="https://pdal.io/workshop/exercises/analysis/dtm/dtm.html">https://pdal.io/workshop/exercises/analysis/dtm/dtm.html</a></div><div><br></div><div>Warm Regards,</div><div>Thejus</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Sep 18, 2019 at 7:36 AM Andrew Bell <<a href="mailto:andrew.bell.ia@gmail.com">andrew.bell.ia@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Sep 18, 2019 at 8:25 AM Jelto Buurman <<a href="mailto:jelto.buurman@googlemail.com" target="_blank">jelto.buurman@googlemail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi,<br>
I want to use pdal to convert lidar data to tif. If I am using the following<br>
pipline:<br>
{<br>
        "pipeline":[<br>
        {<br>
                "type" : "readers.las",<br>
                        "filename" : "linputfile.laz"<br>
        },<br>
        {<br>
                "type":"filters.range",<br>
                        "limits":",Classification[2:2]"<br>
        },<br>
        { <br>
                "type": "writers.gdal",<br>
                        "resolution": 1,<br>
                        "radius": 1.5,<br>
                        "filename":"outputfile.tif"<br>
        }<br>
                ]<br>
}<br>
 I get a tif file, but the interpolation method is idw. So ever edge in the<br>
surface will be fased and the peeks will also be cutted of.<br></blockquote><div><br></div><div>We only do the interpolation methods described in the documentation: <a href="https://pdal.io/stages/writers.gdal.html" target="_blank">https://pdal.io/stages/writers.gdal.html</a></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
If I am using the following pipeline:<br>
<br>
{<br>
        "pipeline":[<br>
        {<br>
                "type" : "readers.las",<br>
                        "filename" : "inputfile.laz"<br>
        },<br>
        {<br>
                "type":"filters.range",<br>
                        "limits":",Classification[2:2]"<br>
        },<br>
        {<br>
                "type":"filters.delaunay"<br>
        },<br>
                { <br>
               "type": "writers.ply",<br>
                "filename": "output.ply",<br>
                "faces": true<br>
        }<br>
                ]<br>
}<br></blockquote><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
 I  get a  very big textfile, witch I even cannot load into QGIS. Does<br>
anyone have an advise?</blockquote><div> </div>You can write binary PLY.  Try:</div><div class="gmail_quote"><br></div><div class="gmail_quote">   { <br>
               "type": "writers.ply",<br>
                "filename": "output.ply",<br>
                "faces": true,<br>                 "storage_mode": "little_endian"</div><div class="gmail_quote">
        } </div><div class="gmail_quote"><br></div><div class="gmail_quote">You can also set the precision when writing text output.  See: <a href="https://pdal.io/stages/writers.ply.html" target="_blank">https://pdal.io/stages/writers.ply.html</a></div><div class="gmail_quote"><br></div>-- <br><div dir="ltr" class="gmail-m_-6122574456580072851gmail_signature">Andrew Bell<br><a href="mailto:andrew.bell.ia@gmail.com" target="_blank">andrew.bell.ia@gmail.com</a></div></div>
_______________________________________________<br>
pdal mailing list<br>
<a href="mailto:pdal@lists.osgeo.org" target="_blank">pdal@lists.osgeo.org</a><br>
<a href="https://lists.osgeo.org/mailman/listinfo/pdal" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/pdal</a></blockquote></div>