GRASS to ARCINFO

Response to Bruce Wylie:

Another way to convert from GRASS raster format to ArcInfo:

1.- Convert binary GRASS raster format to ASCII GRASS raster format using r.in.ascii
2.- Modify the head of the file:
  
  north: 1000 ncols 200
  south: 1000 nrows 100
GRASS: east: 500 => ARCINFO: xllcorner 0
  west: 500 yllcorner 0
  rows: 200 cellsize 5
  cols: 100 NODATA_value 0

3.- Import to ARCINFO using ASCIIGRID (GRID)

Good luck in your work.