1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
=================
Less Basic Things
=================
Extra Dimensions
================
The LAS Specification version 1.4 defines a standard way to add extra dimensions to
a LAS file.
In laspy you can add extra dimensions using the :meth:`.LasData.add_extra_dim` function
The Allowed base types for an extra dimensions are:
+-------------------------+-------------+-------------+
| laspy name | size (bits) | type |
+=========================+=============+=============+
| u1 or uint8 | 8 | unsigned |
+-------------------------+-------------+-------------+
| i1 or int8 | 8 | signed |
+-------------------------+-------------+-------------+
| u2 or uint16 | 16 | unsigned |
+-------------------------+-------------+-------------+
| i2 or int16 | 16 | signed |
+-------------------------+-------------+-------------+
| u4 or uint32 | 32 | unsigned |
+-------------------------+-------------+-------------+
| i4 or int32 | 32 | signed |
+-------------------------+-------------+-------------+
| u8 or uint64 | 64 | unsigned |
+-------------------------+-------------+-------------+
| i8 or int64 | 64 | signed |
+-------------------------+-------------+-------------+
| f4 or float32 | 32 | floating |
+-------------------------+-------------+-------------+
| f8 or float64 | 64 | floating |
+-------------------------+-------------+-------------+
You can prepend the number '2' or '3' to one of the above base type to define an extra dimension
that is array of 2 or 3 elements per points.
Example: 3u2 -> each points will have an extra dimension that is an array of 3 * 16 bits
Here we are adding a new dimension called "codification" where each value is stored on a 64 bit unsigned integer
and an array field of 3 doubles for each points.
.. code-block:: python
import laspy
import numpy as np
las = laspy.read("somefile.las")
las.add_extra_dim(laspy.ExtraBytesParams(
name="codification",
type=np.uint64,
description="More classes available"
))
las.add_extra_dim(laspy.ExtraBytesParams(name="mysterious", type="3f8"))
.. note::
Although the specification of the ExtraBytesVlr appeared in the 1.4 LAS Spec, laspy allows to
add new dimensions to file with version < 1.4
.. note::
If you are adding multiple extra dimensions use :meth:`.LasData.add_extra_dims`
as it is more efficient (it allows to allocate all the dimensions at once instead
of re-allocating each time a new dimension is added.
Custom VLRs
===========
Provided you have a valid user_id and record_id (meaning that they are not taken by a VLR described in the LAS specification)
You can add you own VLRs to a file
Fast & Easy way
---------------
The fastest and easiest way to add your custom VLR to a file is to create a :class:`.VLR`,
set its record_data (which must be bytes) and add it to the VLR list.
>>> import laspy
>>> vlr = laspy.vlrs.VLR(user_id='A UserId', record_id=1, description='Example VLR')
>>> vlr
<VLR(user_id: 'A UserId', record_id: '1', data len: 0)>
>>> vlr.record_data = b'somebytes'
>>> vlr
<VLR(user_id: 'A UserId', record_id: '1', data len: 9)>
>>> las = laspy.create()
>>> las.vlrs
[]
>>> las.vlrs.append(vlr)
>>> las.vlrs
[<VLR(user_id: 'A UserId', record_id: '1', data len: 9)>]
Complete & Harder way
---------------------
While the way shown above is quick & easy it might not be perfect for complex VLRs.
Also when reading a file that has custom VLR, laspy won't be able to automatically parse its data
into a better structure, so you will have to find the VLR in the vlrs list and parse it yourself
one laspy is done.
One way to automate this task is to create your own Custom VLR Class that extends
:class:`.BaseKnownVLR` by implementing the missing methods laspy
will be able to automatically parse the VLR when reading the file & write it when saving the file.
>>> class CustomVLR(laspy.vlrs.BaseKnownVLR):
... def __init__(self):
... super().__init__()
... self.numbers = []
...
... @staticmethod
... def official_user_id():
... return "CustomId"
...
... @staticmethod
... def official_record_ids():
... return 1,
...
... def record_data_bytes(self):
... return bytes(self.numbers)
...
... def parse_record_data(self, record_data):
... self.numbers = [b for b in record_data]
...
... def __repr__(self):
... return "<MyCustomVLR>"
>>> import numpy as np
>>> cvlr = CustomVLR()
>>> cvlr.numbers
[]
>>> cvlr.numbers = [1,2, 3]
>>> las = laspy.create()
>>> las.vlrs.append(cvlr)
>>> las.vlrs
[<MyCustomVLR>]
>>> las.x = np.array([1.0, 2.0])
>>> las = laspy.lib.write_then_read_again(las)
>>> las.vlrs
[<MyCustomVLR>]
>>> las.vlrs[0].numbers
[1, 2, 3]
|