hf.runLASprocesor <-
function(path=".", threads=2, chunk_size=512, projcrs=CRS("+init=epsg:32616"), reclassify=c(), pclump=0.6, showMsg=TRUE){
set_lidr_threads(threads)
sectionList<-list.dirs(path, full.names=FALSE, recursive=FALSE)
for(section in sectionList[1:length(sectionList)]){
fld<-hf.initialize(section, path=path, clean=TRUE, showMsg=showMsg)
hf.standarize(section, projcrs, path=path, cleanSrc=TRUE, chunk_size=chunk_size, showMsg=showMsg, reclassify=reclassify)
gc()
hf.normalize(section, projcrs, path=path, showMsg=showMsg)
gc()
fsp<-hf.forestSPmask(section, projcrs, path=path, holes_area=5000, crumbs_area=8000, pclump=pclump, showMsg=showMsg)
if(showMsg) message("Guardando polígonos forestales...")
writeOGR(fsp, fld, paste(section, "Polígonos forestales", sep="_"), driver="ESRI Shapefile")
gc()
hf.clipForest(section, projcrs, fsp, path=path, showMsg=showMsg) #readOGR(fld, paste(section, "Poligonos forestales", sep="_"))
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.