We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40885a1 + e577e0f commit 60b2115Copy full SHA for 60b2115
packages/core/src/bag3d/core/assets/ahn/metadata.py
@@ -218,8 +218,10 @@ def compute_load_metadata(
218
raise
219
# if pdal fails store only the filename in the table (to be used later)
220
except Exception as e:
221
- context.log.exception(f"PDAL failed for tile {tile_id}: {e}")
222
- out_info = {"filename": laz_files_ahn.path}
+ context.log.exception(
+ f"PDAL failed for tile {tile_id} in {laz_files_ahn.path}: {e}"
223
+ )
224
+ out_info = {"filename": str(laz_files_ahn.path)}
225
226
set_json_dumps(dumps=partial(json.dumps, ensure_ascii=False))
227
0 commit comments