1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
from . import errors
class File:
def __init__(self, *args, **kwargs) -> None:
raise errors.LaspyException(
"""You are using laspy 2.0, which has several improvements over 1.x
but with several breaking changes.
To stay on laspy 1.x: `pip install laspy<2.0.0`
In short:
- To read a file do: las = laspy.read('somefile.laz')
- To create a new LAS data do: las = laspy.create(point_format=2, file_version='1.2')
- To write a file previously read or created: las.write('somepath.las')
See the documentation for more information about the changes https://laspy.readthedocs.io/en/latest/"""
)
|