<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Hello everyboy,<br>
    I followed this tutorial
    (<a class="moz-txt-link-freetext" href="http://workshops.boundlessgeo.com/tutorial-lidar/">http://workshops.boundlessgeo.com/tutorial-lidar/</a>) and  am trying
    to load las-data into postgreSQL by using the pipeline function from
    pdal.  Unfortunately pdal generates an error when I try to upload
    the lidar data to the database: <code>pdal pipeline --input
      laz2pg.xml</code>
    <blockquote>
      <p>PDAL: Couldn't create filter stage of type 'filters.cache'.</p>
    </blockquote>
    <p>The content of my pipeline xml file is the following:</p>
    <pre style="" class="lang-sql prettyprint prettyprinted"><code><span class="pun"><?xml version="1.0" encoding="utf-8"?>
<Pipeline version="1.0">
    <Writer type="writers.pgpointcloud">
        <Option name="connection">host='localhost' dbname='lidar' user='postgres'</Option>
        <Option name="table">sthsm</Option>
        <Option name="srid">4326</Option>
        <Filter type="filters.chipper">
            <Option name="capacity">400</Option>
            <Filter type="filters.cache">
                <Reader type="readers.las">
                    <Option name="U4545539.las">/home/tcuerten/Dokumente/LASER/U4545539.las</Option>
                    <Option name="spatialreference">EPSG:4326</Option>
                </Reader>
            </Filter>
        </Filter>
    </Writer>
</Pipeline></span><span class="pun"></span></code></pre>
    I guess the problem is that I'm missing some drivers in my pdal
    version.I checked the pdal drivers with 'pdal --drivers' and
    apparently also the pgpointcloud drivers are missing. <br>
    Do you have any suggestions why i am missing these drivers and how i
    could add these drivers to pdal?<br>
    <br>
    Thanks<br>
    <br>
    Thomas <br>
    <br>
  </body>
</html>