ARC ASCIIGRID refers to a specifc interchange format developed for ARC/INFO rasters in ASCII format. The format consists of a header that specifies the geographic domain and resolution, followed by the actual grid cell values. Usually the file extension is .asc, but recent versions of ESRI software also recognize the extension .grd. It looks like this:
ncols 157 nrows 171 xllcorner -156.08749650000 yllcorner 18.870890200000 cellsize 0.00833300 0 0 1 1 1 2 3 3 5 6 8 9 12 14 18 21 25 30 35 41 47 53 59 66 73 79 86 92 97 102 106 109 112 113 113 113 111 109 106 103 98 94 89 83 78 72 67 61 56 51 46 41 37 32 29 25 22 19 etc...
Records 1 - 6 Geographic header
Coordinates may be in decimal or integer format. DD:MM:SS format for geodetic coordinates is not supported.
Record 7 -> end of file Data values
These are the value of individual cell typically representing elevation of a particular area.
xxx xxx xxx
val(nox,noy) (f) = individual grid values, column varying fastest in integer format. Grid values are stored as integers but can be read as floating point values.
xllcorner and yllcorner are given as the EDGES of the grid, NOT the centers of the edge cells. ARC/INFO supports other header strings that allow the centers of the edge cells to be given using xllcenter and yllcenter instead. The origin of the grid is the upper left and terminus at the lower right.
ARC format grids are single-band files.


