I have this data in XDR format and I tried to open it using R. This is my data
> unlist(MCD12Q1.wgs84.ras.01L)
[[1]]
class : RasterLayer
dimensions : 276, 199, 54924 (nrow, ncol, ncell)
resolution : 0.00702, 0.00417 (x, y)
extent : 136.2091, 137.6061, 34.60728, 35.7582 (xmin, xmax, ymin, ymax)
crs : +proj=longlat +datum=WGS84 +no_defs
source : memory
names : layer
values : 1, 17 (min, max)
[[2]]
class : RasterLayer
dimensions : 276, 199, 54924 (nrow, ncol, ncell)
resolution : 0.00702, 0.00417 (x, y)
extent : 136.2091, 137.6061, 34.60728, 35.7582 (xmin, xmax, ymin, ymax)
crs : +proj=longlat +datum=WGS84 +no_defs
source : memory
names : layer
values : 1, 17 (min, max)
[[3]]
class : RasterLayer
dimensions : 276, 199, 54924 (nrow, ncol, ncell)
resolution : 0.00702, 0.00417 (x, y)
extent : 136.2091, 137.6061, 34.60728, 35.7582 (xmin, xmax, ymin, ymax)
crs : +proj=longlat +datum=WGS84 +no_defs
source : memory
names : layer
values : 1, 17 (min, max)
Therefore, I want to export each raster into GeoTiff.
May I need to separate the list? How to do that?
Thank you in advance.