r-lidar / lidR

Airborne LiDAR data manipulation and visualisation for forestry application
https://CRAN.R-project.org/package=lidR
GNU General Public License v3.0
601 stars 131 forks source link

Export and display attribute #493

Closed hi4045 closed 3 years ago

hi4045 commented 3 years ago

Hello,

I am working in Rstudio with lidR package using my Lidar data (las file). I just want to export the analyzed/processed las file and also want to display the attributes (Example: normalized las). Could you please help with the script to export and display attributes?

Thank you,

Jean-Romain commented 3 years ago

I do not understand the question. Please ask a clear and well described question. Have you read the book (plot section)?

hi4045 commented 3 years ago

I just want to export my results in R, so that I will be able to open and visualize in Arcmap software. To export: extracted cloud of points, 3d plots and attributes.... and yes I read https://jean-romain.github.io/lidRbook/io.html#plot but coul not solve it Thanks

Jean-Romain commented 3 years ago

To export point cloud : lidR::writeLAS() To export vectors: raster::shapefile() or sp::writeORG or sf::st_write() To export raster: raster::write_raster().

But here it is the bug tracker of the lidR package. Not a place to learn geospatial with R. I suggest you to start with this book https://geocompr.robinlovelace.net/index.html

hi4045 commented 3 years ago

Thank you!