****************************************************; *** intgrid.sas ***; *** sas code to read the integer grids ***; *** biomax.asc, lakes.asc, and land.asc ***; ****************************************************; data in; infile 'path and file name' firstobs=7 linesize=9203; input varname@@; run;