This commit is contained in:
Florent Guiotte 2018-08-31 10:55:31 +02:00
commit 992f912708

View File

@ -69,7 +69,10 @@ def bulk_load(path, name=None, filter_treshold=.1, clip_treshold=.5, dtype=None)
for a in attributes:
data[a] = list()
paths = [path] if isinstance(path, str) else path
print('Load data...')
for path in paths:
for f in find_las(path):
print('{}: '.format(f), end='')
infile = laspy.file.File(f)