Forum

Author Topic: Script Import Points - georferenced [R]  (Read 1409 times)

andysfd

  • Newbie
  • *
  • Posts: 13
    • View Profile
Script Import Points - georferenced [R]
« on: February 05, 2021, 12:38:24 PM »
Hi guys,

i have the following problem:

I import via Python script a (unstructured) E57 point cloud.
works fine, however the [R] Tag is not assigned and therefore the data gets messe up when reexport in Potree file.

when i import manually the data gets assigned with the [R] georeference tag.

console says both imports are the same commands.

Does anyone know how to import via script and get the data georeferenced?

Code: [Select]
chunk.importPoints(filepath,crs=chunk.crs,format=Metashape.PointsFormat.PointsFormatE57,calculate_normals=False)
chunk.exportPoints(outputpath,source_data=Metashape.DataSource.DenseCloudData,clip_to_boundary=False, binary=True, save_normals=False,save_colors=True, save_classes=False, save_confidence=False, raster_transform=Metashape.RasterTransformType.RasterTransformNone, colors_rgb_8bit=False, comment='', save_comment=False, format=Metashape.PointsFormat.PointsFormatPotree,crs=chunk.crs)