Skip to content

Latest commit

 

History

History
executable file
·
52 lines (36 loc) · 1.11 KB

filters.mortonorder.rst

File metadata and controls

executable file
·
52 lines (36 loc) · 1.11 KB

filters.mortonorder

Sorts the XY data using Morton ordering.

It's also possible to compute a reverse Morton code by reading the binary representation from the end to the beginning. This way, points are sorted with a good dispersement. For example, by successively selecting N representative points within tiles:

Reverse Morton indexing
.. seealso::

    See `LOPoCS`_ and `pgmorton`_ for some use case examples of the
    Reverse Morton algorithm.

.. embed::

Example

[
    "uncompressed.las",
    {
        "type":"filters.mortonorder",
        "reverse":"false"
    },
    {
        "type":"writers.las",
        "filename":"compressed.laz",
        "compression":"true"
    }
]

Options