The SQLite point cloud reader allows you to read data stored in a SQLite database using a scheme that PDAL wrote using the writers.sqlite writer. Much like the writers.oci and writers.pgpointcloud, the SQLite driver stores data in tables that contain rows of patches. Each patch contains a number of spatially contiguous points
<?xml version="1.0" encoding="utf-8"?>
<Pipeline version="1.0">
<Writer type="writers.las">
<Option name="filename">
output.las
</Option>
<Reader type="readers.sqlite">
<Option name="query">
SELECT b.schema, l.cloud, l.block_id, l.num_points, l.bbox, l.extent, l.points, b.cloud
FROM simple_blocks l, simple_cloud b
WHERE l.cloud = b.cloud and l.cloud in (1)
order by l.cloud
</Option>
<Option name="connection">
/Users/hobu/dev/git/pdal/test/data/thedata.sqlite
</Option>
</Reader>
</Writer>
</Pipeline>