Is there a way to return the average point spacing of a LAS file in ArcPy?

204
1
Jump to solution
09-25-2024 10:56 AM
jacob_ekn
Occasional Contributor

I'm making a script tool where I'd like to automatically obtain the average point spacing of a lidar data set for performing a TIN delineation. I know there's a way to view the point spacing in the properties of a LAS file but couldn't find anything about returning it in ArcPy.

0 Kudos
1 Solution

Accepted Solutions
jacob_ekn
Occasional Contributor

Found the following in a past Esri Community response from an Esri employee and it worked for me:

arcpy.Describe("lidar.las").pointSpacing

View solution in original post

0 Kudos
1 Reply
jacob_ekn
Occasional Contributor

Found the following in a past Esri Community response from an Esri employee and it worked for me:

arcpy.Describe("lidar.las").pointSpacing
0 Kudos