home *** CD-ROM | disk | FTP | other *** search
- program ctg1(input,output,inf,outf);
-
- type
-
- byte = char;
-
- var
-
- inf,outf : text;
- infile,outfile : packed array[1..80] of char;
- header_recs : integer;
- recs_tally : integer;
- col1,col2,row1,row2,cols,rows : integer;
- tx,ty : integer;
- min,max : integer;
- minval,maxval,adjz : integer;
- layer,fmt : integer;
-
- procedure get_parameters;
-
- begin
-
- writeln(chr(27),'[2J',chr(27),'[1;1H'); (* clears the screen *)
-
- writeln(' IDRISI USGS Composite Theme Grid Windowing Program');
- writeln(' --------------------------------------------------');
- writeln;
-
- write('Enter the name of the raw CTG tape file : ');
- readln(infile);
- writeln;
- writeln;
-
- write('Enter a new name for the extracted window : ');
- readln(outfile);
- writeln;
- writeln;
-
- write('Enter the number of header records : ');
- readln(header_recs);
- writeln;
- writeln;
-
- write('Enter the start easting : ');
- readln(col1);
- tx:=col1;
- writeln;
- writeln;
-
- write('Enter the finish easting : ');
- readln(col2);
- writeln;
- writeln;
-
- write('Enter the start northing : ');
- readln(row1);
- ty:=row1;
- writeln;
- writeln;
-
- write('Enter the finish northing : ');
- readln(row2);
- writeln;
- writeln;
-
- write('Enter the data layer number : ');
- readln(layer);
- writeln;
- writeln;
-
- write('Enter the lower cutoff data layer value : ');
- readln(minval);
- writeln;
- writeln;
-
- write('Enter the upper cutoff data layer value : ');
- readln(maxval);
- writeln;
- writeln;
-
- write('Enter the data layer adjustment value : ');
- readln(adjz);
- adjz:=abs(adjz);
- writeln;
- writeln;
-
- write('Enter the output field width desired : ');
- readln(fmt);
- fmt:=fmt+1;
-
- rows:=round((row2-row1)/200)+1;
- cols:=round((col2-col1)/200)+1;
-
- end;
-
- procedure extract;
-
- var i,j,k : integer;
- buffer : packed array[1..80] of char;
- raw : packed array[1..80] of char;
- cooked : array[1..9] of integer;
- row,col: integer;
- rk,ck : integer;
-
- begin
-
- for i:=1 to header_recs do read(inf,buffer);
-
- max:=-maxint;
- min:= maxint;
-
- rk:=0;
- ck:=0;
-
- recs_tally:=header_recs;
-
- repeat
-
- read(inf,buffer);
- recs_tally:=recs_tally+1;
-
- raw:=substr(buffer,1,3);
- readv(raw,cooked[1],error:=continue); (* UTM Zone *)
- raw:=substr(buffer,4,8);
- readv(raw,cooked[2],error:=continue); (* UTM Easting *)
- raw:=substr(buffer,12,8);
- readv(raw,cooked[3],error:=continue); (* UTM Northing *)
- raw:=substr(buffer,21,10);
- readv(raw,cooked[4],error:=continue); (* Land Use / Land Cover *)
- raw:=substr(buffer,31,10);
- readv(raw,cooked[5],error:=continue); (* FIPS Code *)
- raw:=substr(buffer,41,10);
- readv(raw,cooked[6],error:=continue); (* Hydrologic Unit Code *)
- raw:=substr(buffer,51,10);
- readv(raw,cooked[7],error:=continue); (* Census Tract or Cnty Subdiv *)
- raw:=substr(buffer,61,10);
- readv(raw,cooked[8],error:=continue); (* Fed. Land Ownership Code *)
- raw:=substr(buffer,71,10);
- readv(raw,cooked[9],error:=continue); (* State Land Ownership Code *)
-
- row:=(rows-1)-round((cooked[3]-ty)/200);
- col:=round((cooked[2]-tx)/200);
-
- if (((row>=0) and (row<rows)) and ((col>=0) and (col<cols))) then
- begin
- if ((cooked[layer]>=minval) and (cooked[layer]<=maxval)) then
- begin
- cooked[layer]:=cooked[layer]-adjz;
- writeln(outf,row:4,col:4,cooked[layer]:fmt);
- if cooked[layer]>max then max:=cooked[layer];
- if cooked[layer]<min then min:=cooked[layer];
- end;
- end;
-
- (* note : it is assumed here that the data file has been downloaded *)
- (* onto disk as an 8000 byte fixed length file. This results in 100 *)
- (* cell records per physical record. If this is not the case change *)
- (* the numeric constant below to reflect the number of cell records *)
- (* which occur within each physical record [ie. change the no. 100] *)
-
- if (recs_tally mod 100)=0 then readln(inf);
-
- until ((row>=rows) and (col>=cols));
-
- end;
-
- procedure do_it;
-
- begin
-
- open(inf,infile,old);
- open(outf,outfile,new);
- reset(inf);
- rewrite(outf);
-
- extract;
-
- close(inf);
- close(outf);
-
- end;
-
- procedure print_results;
-
- begin
-
- writeln(chr(27),'[2J',chr(27),'[1;1H'); (* clears the screen *)
-
- writeln(' IDRISI USGS Composite Theme Grid Windowing Program');
- writeln(' --------------------------------------------------');
- writeln;
-
- writeln;
- writeln;
- writeln('Windowing operation complete :');
- writeln;
- writeln('The number of rows is : ',rows);
- writeln('The number of cols is : ',cols);
- writeln;
- writeln('The minimum value is : ',min);
- writeln('The maximum value is : ',max);
- writeln;
-
- end;
-
- begin
-
- get_parameters;
- do_it;
- print_results;
-
- end.