Landscape metrics in R software

I am doing landscape metrics in r software . There is a package for it landscapemetrics. But I m getting difficulty in exporting image to TIFF file .
I m using this code for exporting image
show _ lsm(h20_ data, labels = false,class= 0,what = lsm_ p_ area)
writeraster(h20_ data,filename= "H20 .tif", format= "Gtiff",overwrite = true)

Without a reprex only general guidance can be offered. See the FAQ: How to do a minimal reproducible example reprex for beginners.

library(landscapemetrics)
library(landscapetools)

# landscape raster is a ggplot object
class(show_landscape(landscape))

# therefore, it can be saved using ggsave

ggplot2::ggsave(file = "land.tiff")

1 Like

Thanks for the solution . Now i get the image in tiff format.

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.