Hi, I am starting to build a project in Visual Code using the ArcPy library.
I need to convert a LAS file defined in a geographic coordinate system (6706) into a projected file (same ellipsoid, 7794-UTM Italy zone).
Everything works in ArcGIS Pro using ExtractLas, but the Python function (https://pro.arcgis.com/en/pro-app/latest/tool-reference/3d-analyst/extract-las.htm) has no parameters for reprojecting the coordinate system.
I have tried using ProjectLas (https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/project-las.htm), which should be in arcpy.management, but I received an AttributeError stating that the module 'arcpy.management' has no attribute 'ProjectLas'.
Can you please tell me how I can perform this reprojection in a Visual Code Python script?
Thank you very much for any help!