Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 938 Bytes

writers.e57.rst

File metadata and controls

55 lines (36 loc) · 938 Bytes

writers.e57

The E57 Writer supports writing to E57 files.

The writer supports E57 files with Cartesian point clouds.

Note

E57 files can contain multiple point clouds stored in a single file. The writer will only write a single cloud per file.

Note

Spherical format points are not supported.

Note

The E57 cartesianInvalidState dimension is mapped to the Omit PDAL dimension. A range filter can be used to filter out the invalid points.

.. plugin::

.. streamable::


Example

[
    {
        "type":"readers.las",
        "filename":"inputfile.las"
    },
    {
        "type":"writers.e57",
        "filename":"outputfile.e57",
              "doublePrecision":false
    }
]

Options

filename
E57 file to write [Required]
doublePrecision
Use double precision for storage (false by default).