I have a GIS project containing several .adf files. As I m new to ArcMap I don t know how to use them. I managed to read them into r using the raster library
r <- raster("w001001.adf")
When looking at sum(r) I get:
sum(r)
class : RasterLayer
dimensions : 1641, 1358, 2228478 (nrow, ncol, ncell)
resolution : 0.008333333, 0.008333333 (x, y)
extent : -47.63578, -36.31911, -20.93489, -7.259889 (xmin, xmax, ymin, ymax)
coord. ref. : NA
data source : C:\Users\balal\Desktop\blabla\w001001.adf
names : w001001
values : 1, 15 (min, max)
I trying to find information regarding the size of the cells and the land use of each cell (I assume the land use is related to the values as I have 15 land use categories.) and bring this data into a table which I can write as .csv. Is this possible with R? Or am I looking at the wrong file?
Sorry to be rather unclear but I hardly know anything about GIS. Thank you!