home *** CD-ROM | disk | FTP | other *** search
- program landsat(input,output,inf,outf);
-
- (* (c) 1988 J.Ronald Eastman *)
-
- const
-
- rec_length = 4319; (* record length - 1 [4319 for TM/3595 for MSS] *)
- header_recs = 1; (* the number of header records *)
- record_header = 32; (* documentation on the left side of each record *)
-
- type
-
- byte = char; (* defines byte data type -- one pixel per byte *)
- scanline = record (* this record holds a full scaline *)
- pixel : array[0..rec_length] of byte;
- end;
-
- var
-
- inf : file of scanline; (* the LANDSAT input file *)
- outf : file of byte; (* the output file *)
- infile,outfile : packed array[1..80] of char;
- col1,col2 : integer;
- row1,row2 : integer;
- cols,rows : integer;
- min,max : integer;
-
- procedure get_parameters;
-
- begin
-
- write(chr(27),'[2J'); (* these two lines clear the screen *)
- writeln(chr(27),'[1;1H');
-
- writeln(' IDRISI Landsat CCT-X Format Extraction Program');
- writeln(' ----------------------------------------------');
- writeln;
- writeln;
-
- write('Enter the name of the raw tape file : ');
- readln(infile);
- writeln;
- writeln;
-
- write('Enter a new name for the extracted image : ');
- readln(outfile);
- writeln;
- writeln;
-
- write('Enter the start row : ');
- readln(row1);
- writeln;
- writeln;
-
- write('Enter the finish row : ');
- readln(row2);
- writeln;
- writeln;
-
- write('Enter the start column : ');
- readln(col1);
- col1:=col1+record_header;
- writeln;
- writeln;
-
- write('Enter the finish column : ');
- readln(col2);
- col2:=col2+record_header;
- writeln;
- writeln;
-
- rows:=(row2-row1)+1;
- cols:=(col2-col1)+1;
-
- end;
-
- procedure extract;
-
- var i,j : integer;
- raw : scanline;
-
- begin
-
- for i:=1 to header_recs do read(inf,raw); (* by-pass the header *)
-
- max:=(0);
- min:=(255);
-
- for i:=0 to row2 do begin
- read(inf,raw);
- if i>=row1 then begin
- for j:=(col1) to (col2) do begin
- if ord(raw.pixel[j])>max then max:=ord(raw.pixel[j]);
- if ord(raw.pixel[j])<min then min:=ord(raw.pixel[j]);
- write(outf,raw.pixel[j]);
- end; (* j *)
- end; (* if *)
- end; (* i *)
-
- end;
-
- procedure do_it;
-
- begin
-
- writeln;
- writeln('Extraction in Progress ...');
- writeln;
-
- open(inf,infile,old);
- open(outf,outfile,new);
- reset(inf);
- rewrite(outf);
-
- extract;
-
- close(inf);
- close(outf);
-
- end;
-
- procedure print_results;
-
- begin
-
- writeln;
- writeln;
-
- writeln('The number of rows is : ',rows);
- writeln('The number of cols is : ',cols);
- writeln('The minimum value is : ',(min));
- writeln('The maximum value is : ',(max));
-
- end;
-
- begin
-
- get_parameters;
- do_it;
- print_results;
-
- end.
-