home *** CD-ROM | disk | FTP | other *** search
- program new_modules;
-
- var
-
-
- ref_units : string[3];
- val_units,title,ref_system,flag_defn : string[66];
- val_recs,rows,cols : longint;
- val_fields,val_file_type : byte;
- legend,data_format,geo_type : integer;
- old_data_type,old_file_type : integer;
- new_data_type,new_file_type : integer;
- wxmin,wxmax,wymin,wymax,unit_dist : real;
- flag_value,resolution,cellx,celly : real;
- posn_error,val_error,min,max : real;
- posn_error_flag, resolution_flag,
- val_error_flag, flag_flag : boolean;
- legend_text : array [0..255] of string[66];
- path : string[40];
- digi_port,plot_port,prn_port : string[4];
- drive,units : string[2];
- old_image,new_image : string[8];
- image_docfile_extension : string[4];
- image_file_extension : string[4];
- vector_docfile_extension : string[4];
- vector_file_extension : string[4];
- values_docfile_extension : string[4];
- values_file_extension : string[4];
-
- {***************************************************************************}
- procedure create_new_documentation_file;
-
- var
- docfile : text;
- docname : string[80];
- i : integer;
-
- begin
-
- docname:=drive+path+new_image+image_docfile_extension;
- assign(docfile,docname);
- rewrite(docfile);
-
- if ((new_data_type=0) and (new_file_type=1)) then new_data_type:=2;
-
- writeln(docfile,'file title : ',title);
- case new_data_type of
- 0 : writeln(docfile,'data type : integer');
- 1 : writeln(docfile,'data type : real');
- 2 : writeln(docfile,'data type : byte');
- end;
-
- case new_file_type of
- 0 : writeln(docfile,'file type : ascii');
- 1 : writeln(docfile,'file type : binary');
- 2 : writeln(docfile,'file type : packed binary');
- end;
-
- writeln(docfile,'columns : ',cols);
- writeln(docfile,'rows : ',rows);
-
- writeln(docfile,'ref. system : ',ref_system);
- writeln(docfile,'ref. units : ',ref_units);
- {*** note that both ref_system and ref_units MUST be in LOWER CASE ***}
-
- writeln(docfile,'unit dist. : ',unit_dist:9:7);
- writeln(docfile,'min. X : ',wxmin:9:7);
- writeln(docfile,'max. X : ',wxmax:9:7);
- writeln(docfile,'min. Y : ',wymin:9:7);
- writeln(docfile,'max. Y : ',wymax:9:7);
-
- if posn_error_flag then writeln(docfile,'pos''n error : ',posn_error:9:7)
- else writeln(docfile,'pos''n error : unknown');
- if resolution_flag then writeln(docfile,'resolution : ',resolution:9:7)
- else writeln(docfile,'resolution : unknown');
- if new_data_type=1 then writeln(docfile,'min. value : ',min:9:7)
- else writeln(docfile,'min. value : ',min:1:0);
- if new_data_type=1 then writeln(docfile,'max. value : ',max:9:7)
- else writeln(docfile,'max. value : ',max:1:0);
- if val_units='' then writeln(docfile,'value units : unspecified')
- else writeln(docfile,'value units : ',val_units);
- {*** note that val_units MUST be in LOWER CASE ***}
-
- write(docfile,'value error : ');
- if not val_error_flag then writeln(docfile,'unknown') else writeln(docfile,val_error:9:7);
-
- write(docfile,'flag value : ');
- if not flag_flag then writeln(docfile,'none') else
- begin
- if new_data_type=1 then writeln(docfile,flag_value:9:7)
- else writeln(docfile,flag_value:1:0);
- end;
-
- if flag_defn='' then writeln(docfile,'flag def''n : none')
- else writeln(docfile,'flag def''n : ',flag_defn);
-
- writeln(docfile,'legend cats : ',legend);
- if legend<>0 then begin
- if legend>255 then legend:=255;
- for i:=0 to (legend-1) do begin
- write(docfile,'category',i:3,' : ');
- writeln(docfile,legend_text[i]);
- end; {for}
- end;
-
- close(docfile);
-
- end;
-
-
- {***************************************************************************}
- procedure read_documentation_file;
-
- var
- docfile : text;
- docname : string[80];
- description : string[14];
- i,err_code : integer;
- tmpstr : string[66];
-
- begin
-
-
- docname:=drive+path+old_image+image_docfile_extension;
- assign(docfile,docname);
- reset(docfile);
-
- read(docfile, description); readln(docfile,title);
- read(docfile,description); readln(docfile,description);
- if description = 'integer' then old_data_type:=0 else
- if description = 'real' then old_data_type:=1 else
- if description = 'byte' then old_data_type:=2 else
- if description = 'word' then old_data_type:=3 else old_data_type:=999;
-
- if old_data_type>3 then begin
- writeln('Error : The ',description,' data type is not supported by this module');
- halt;
- end;
-
- read(docfile,description); readln(docfile,description);
- if description = 'ascii' then old_file_type:=0 else
- if description = 'binary' then old_file_type:=1 else
- if description = 'packed binary' then old_file_type:=1 else old_file_type:=999;
-
- if old_file_type>1 then begin
- writeln('Error : The ',description,' file type is not supported by this module');
- halt;
- end;
-
- read(docfile,description);readln(docfile,cols);
- read(docfile,description);readln(docfile,rows);
- read(docfile,description);readln(docfile,ref_system);
-
- read(docfile,description);readln(docfile,tmpstr);
- for i:=1 to length(tmpstr) do tmpstr[i]:=upcase(tmpstr[i]);
- if ((tmpstr='M') or (tmpstr='FT') or (tmpstr='MI')
- or (tmpstr='KM') or (tmpstr='DEG') or (tmpstr='RAD')) then ref_units:=tmpstr;
-
- read(docfile,description);readln(docfile,unit_dist);
- read(docfile,description);readln(docfile,wxmin);
- read(docfile,description);readln(docfile,wxmax);
- read(docfile,description);readln(docfile,wymin);
- read(docfile,description);readln(docfile,wymax);
- cellx:=(wxmax-wxmin)/cols;
- celly:=(wymax-wymin)/rows;
-
- read(docfile,description);readln(docfile,tmpstr);
- posn_error_flag:=false;posn_error:=0;
- for i:=length(tmpstr) downto 1 do if tmpstr[i]=' ' then delete(tmpstr,i,1);
- val(tmpstr,posn_error,err_code);
- if err_code=0 then posn_error_flag:=true;
-
- read(docfile,description);readln(docfile,tmpstr);
- resolution_flag:=false;resolution:=0;
- for i:=length(tmpstr) downto 1 do if tmpstr[i]=' ' then delete(tmpstr,i,1);
- val(tmpstr,resolution,err_code);
- if err_code=0 then resolution_flag:=true;
-
- read(docfile,description);readln(docfile,min);
- read(docfile,description);readln(docfile,max);
- read(docfile,description);readln(docfile,val_units);
-
- read(docfile,description);readln(docfile,tmpstr);
- val_error_flag:=false;val_error:=0;
- for i:=length(tmpstr) downto 1 do if tmpstr[i]=' ' then delete(tmpstr,i,1);
- val(tmpstr,val_error,err_code);
- if err_code=0 then val_error_flag:=true;
-
- read(docfile,description);readln(docfile,tmpstr);
- flag_flag:=false;flag_value:=0;
- for i:=length(tmpstr) downto 1 do if tmpstr[i]=' ' then delete(tmpstr,i,1);
- val(tmpstr,flag_value,err_code);
- if err_code=0 then flag_flag:=true;
-
- read(docfile,description);readln(docfile,flag_defn);
- read(docfile,description);readln(docfile,legend);
-
- if legend<>0 then begin
- if legend>255 then legend:=255;
- for i:=0 to (legend-1) do begin read(docfile,description);
- readln(docfile,legend_text[i]);
- end; {for}
- end;
-
- close (docfile);
-
- end;
-
-
- {***************************************************************************}
- procedure read_env_file;
-
- var temp : text;
- env_txt : string[40];
- i : integer;
-
- begin
-
- path:='';drive:='';
- assign(temp,'idrisi.env'); {$I-} reset(temp); {$I+}
-
- readln(temp); readln(temp);
- read(temp,env_txt);readln(temp,drive);
- read(temp,env_txt);readln(temp,path);
-
- read(temp,env_txt);readln(temp,image_file_extension);
- read(temp,env_txt);readln(temp,image_docfile_extension);
- read(temp,env_txt);readln(temp,vector_file_extension);
- read(temp,env_txt);readln(temp,vector_docfile_extension);
- read(temp,env_txt);readln(temp,values_file_extension);
- read(temp,env_txt);readln(temp,values_docfile_extension);
-
- read(temp,env_txt);readln(temp,ref_units);
- read(temp,env_txt);readln(temp,digi_port);
- read(temp,env_txt);readln(temp,plot_port);
- read(temp,env_txt);readln(temp,prn_port);
- close(temp);
-
- if path='none' then path:='';
- if drive='no' then drive:='' else if (drive[2]<>':') then drive:='';
-
- end;
-
- {***************************************************************************}
-
- begin
-
- {main program goes here}
-
-
- end.