_________________________________________________________________
[[elided Hotmail spam]]
[[alternative HTML version deleted]]
______________________________________________
R-h...@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
I'm guessing they are geographic data? Gridded, raster data perhaps?
This information might have helped... Remember there are 36^3 = 46656
possible alpha-numeric three-character file endings and I'm not sure I
know all of them. Lucky for you this one rang a bell...
So, you probably want the rgdal package. If you've not got it
already, then do this in R:
install.packages("rgdal")
when that's done, you need to load it:
library(rgdal)
and then try and read your file:
map = readGDAL("file.hdr")
and then try:
summary(map)
image(map)
That's a start.
Barry