├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── data.R └── main.R ├── README.md ├── inst └── extdata │ └── lidar_example.laz ├── leafR.Rproj └── man ├── FHD.Rd ├── GC.Rd ├── GS.Rd ├── LAHV.Rd ├── k.coefficient.Rd ├── lad.profile.Rd ├── lad.voxels.Rd ├── lai.Rd ├── lai.raster.Rd ├── lidar_example.laz.Rd └── pointsByZSlice.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/R/data.R -------------------------------------------------------------------------------- /R/main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/R/main.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/README.md -------------------------------------------------------------------------------- /inst/extdata/lidar_example.laz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/inst/extdata/lidar_example.laz -------------------------------------------------------------------------------- /leafR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/leafR.Rproj -------------------------------------------------------------------------------- /man/FHD.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/man/FHD.Rd -------------------------------------------------------------------------------- /man/GC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/man/GC.Rd -------------------------------------------------------------------------------- /man/GS.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/man/GS.Rd -------------------------------------------------------------------------------- /man/LAHV.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/man/LAHV.Rd -------------------------------------------------------------------------------- /man/k.coefficient.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/man/k.coefficient.Rd -------------------------------------------------------------------------------- /man/lad.profile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/man/lad.profile.Rd -------------------------------------------------------------------------------- /man/lad.voxels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/man/lad.voxels.Rd -------------------------------------------------------------------------------- /man/lai.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/man/lai.Rd -------------------------------------------------------------------------------- /man/lai.raster.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/man/lai.raster.Rd -------------------------------------------------------------------------------- /man/lidar_example.laz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/man/lidar_example.laz.Rd -------------------------------------------------------------------------------- /man/pointsByZSlice.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRAAlmeida/leafR/HEAD/man/pointsByZSlice.Rd --------------------------------------------------------------------------------