[18382] | 1 | function [B E] = gslib(x,y,data,xmin,ymin,nx,ny,deltax,deltay,varargin)
|
---|
[12302] | 2 | %GSLIB - use gslib for Kriging
|
---|
| 3 | %
|
---|
| 4 | % Usage:
|
---|
| 5 | % output = gslib(x,y,data,varargin)
|
---|
[12290] | 6 |
|
---|
[18382] | 7 | %process options
|
---|
| 8 | options = pairoptions(varargin{:});
|
---|
| 9 |
|
---|
[12290] | 10 | %Variogram
|
---|
[18382] | 11 | nugget= getfieldvalue(options,'nugget',10);
|
---|
| 12 | sill = getfieldvalue(options,'sill',164);
|
---|
| 13 | range = getfieldvalue(options,'range',25763);
|
---|
[12290] | 14 |
|
---|
| 15 | %Kriging options
|
---|
[18382] | 16 | mindata = getfieldvalue(options,'mindata',1);
|
---|
| 17 | maxdata = getfieldvalue(options,'maxdata',50);
|
---|
| 18 | maxsearchradius = getfieldvalue(options,'searchrange',50000);
|
---|
[12290] | 19 |
|
---|
| 20 | %Some intermediaries (Convert to gslib's parameters);
|
---|
| 21 | c = (sill-nugget);
|
---|
| 22 | a = sqrt(3)*range;
|
---|
| 23 |
|
---|
| 24 | %Write data file
|
---|
| 25 | fid=fopen('cluster.dat','w');
|
---|
| 26 | fprintf(fid,'%s\n','Data file');
|
---|
| 27 | fprintf(fid,'%i\n',3);
|
---|
| 28 | fprintf(fid,'%s\n','Xlocation');
|
---|
| 29 | fprintf(fid,'%s\n','Ylocation');
|
---|
| 30 | fprintf(fid,'%s\n','Data');
|
---|
| 31 | fprintf(fid,'%g %g %g\n',[x y data]');
|
---|
| 32 | fclose(fid);
|
---|
| 33 |
|
---|
| 34 | if 0, %GAMV
|
---|
| 35 | %Write parameter file
|
---|
| 36 | fid=fopen('gamv.par','w');
|
---|
| 37 | fprintf(fid,'\t\t\t\t%s\n','Parameters for GAMV');
|
---|
| 38 | fprintf(fid,'\t\t\t\t%s\n','*******************');
|
---|
| 39 | fprintf(fid,'\n');
|
---|
| 40 | fprintf(fid,'%s\n','START OF PARAMETERS:');
|
---|
| 41 | fprintf(fid,'%-30s %s\n','./cluster.dat' ,'\file with data');
|
---|
| 42 | fprintf(fid,'%-30s %s\n','1 2 0' ,'\columns for X, Y, Z coordinates');
|
---|
| 43 | fprintf(fid,'%-30s %s\n','1 3 ' ,'\number of variables, column number');
|
---|
| 44 | fprintf(fid,'%-30s %s\n','-1.0e21 1.0e21' ,'\trimming limits');
|
---|
| 45 | fprintf(fid,'%-30s %s\n','gamv.out' ,'\file for variogram output');
|
---|
| 46 | fprintf(fid,'%-30s %s\n','20' ,'\number of lags');
|
---|
| 47 | fprintf(fid,'%-30s %s\n','5.0' ,'\lag separation distance');
|
---|
| 48 | fprintf(fid,'%-30s %s\n','3.0' ,'\lag tolerance');
|
---|
| 49 | fprintf(fid,'%-30s %s\n','3' ,'\number of directions');
|
---|
| 50 | fprintf(fid,'%-30s %s\n','0.0 90.0 50.0 0.0 90.0 50.0','\azm, atol, bandh, dip, dtol, bandv');
|
---|
| 51 | fprintf(fid,'%-30s %s\n','0.0 22.5 25.0 0.0 22.5 25.0','\azm, atol, bandh, dip, dtol, bandv');
|
---|
| 52 | fprintf(fid,'%-30s %s\n','90. 22.5 25.0 0.0 22.5 25.0','\azm, atol, bandh, dip, dtol, bandv');
|
---|
| 53 | fprintf(fid,'%-30s %s\n','0' ,'\standardize sill? (0=no, 1=yes)');
|
---|
| 54 | fprintf(fid,'%-30s %s\n','2' ,'\number of variograms');
|
---|
| 55 | fprintf(fid,'%-30s %s\n','1 1 1' ,'\tail var., head vars., variogram type');
|
---|
| 56 | fprintf(fid,'%-30s %s\n','1 1 3' ,'\tail var., head vars., variogram type');
|
---|
| 57 | fclose(fid);
|
---|
| 58 |
|
---|
| 59 | %Call gamv
|
---|
| 60 | system([issmdir() '/externalpackages/gslib/install/gamv gamv.par']);
|
---|
| 61 |
|
---|
| 62 | else, %Kriging KB2D
|
---|
| 63 | %Write parameter file
|
---|
| 64 | fid=fopen('kb2d.par','w');
|
---|
| 65 | fprintf(fid,'\t\t\t\t%s\n','Parameters for KB2D');
|
---|
| 66 | fprintf(fid,'\t\t\t\t%s\n','*******************');
|
---|
| 67 | fprintf(fid,'\n');
|
---|
| 68 | fprintf(fid,'%s\n','START OF PARAMETERS:');
|
---|
| 69 | fprintf(fid,'%-30s %s\n','./cluster.dat' ,'\file with data');
|
---|
| 70 | fprintf(fid,'%-30s %s\n','1 2 3' ,'\columns for X, Y and variable');
|
---|
| 71 | fprintf(fid,'%-30s %s\n','-1.0e21 1.0e21' ,'\trimming limits');
|
---|
| 72 | fprintf(fid,'%-30s %s\n','0' ,'\debugging level: 0,1,2,3');
|
---|
| 73 | fprintf(fid,'%-30s %s\n','kb2d.dbg' ,'\file for debuggging output');
|
---|
| 74 | fprintf(fid,'%-30s %s\n','kb2d.out' ,'\file for kriged output');
|
---|
| 75 | fprintf(fid,'%-30s %s\n',num2str([nx xmin deltax],'%i %10g %6g') ,'\nx, xmn, xsiz');
|
---|
| 76 | fprintf(fid,'%-30s %s\n',num2str([ny ymin deltay],'%i %10g %6g') ,'\nx, xmn, xsiz');
|
---|
| 77 | fprintf(fid,'%-30s %s\n','1 1' ,'\x and y block discretization');
|
---|
| 78 | fprintf(fid,'%-30s %s\n',num2str([mindata maxdata],'%6g') ,'\min and max data for kriging');
|
---|
| 79 | fprintf(fid,'%-30s %s\n',num2str(maxsearchradius,'%6g') ,'\max search radius');
|
---|
| 80 | fprintf(fid,'%-30s %s\n','1 2.302' ,'\0=SK, 1=OK, (mean if SK)');
|
---|
| 81 | fprintf(fid,'%-30s %s\n',['1 ' num2str(nugget)] ,'\nst, nugget effect');
|
---|
| 82 | fprintf(fid,'%-30s %s\n',['3 ' num2str([c 0.0 a a],'%10g')],'\it, c, azm, a_max, a_min');
|
---|
| 83 | fclose(fid);
|
---|
| 84 |
|
---|
| 85 | tic;system([issmdir() '/externalpackages/gslib/install/kb2d kb2d.par']);toc;
|
---|
[12302] | 86 | delete('kb2d.par');
|
---|
[12290] | 87 |
|
---|
| 88 | %Read output
|
---|
| 89 | fid=fopen('kb2d.out','r');
|
---|
| 90 | while (~feof(fid)),
|
---|
| 91 | A=fscanf(fid,'%s',1);
|
---|
| 92 | if strcmp(A,'KB2D');
|
---|
| 93 | A=fscanf(fid,'%s',1); %Read output
|
---|
| 94 | params=fscanf(fid,'%i %i %i %i %g %g %g %g %g %g %1',[11 1]);
|
---|
| 95 | elseif strcmp(A,' Estimate'),
|
---|
| 96 | continue;
|
---|
| 97 | elseif strcmp(A,'Estimation'),
|
---|
| 98 | A=fscanf(fid,'%s',1); %Read Variance
|
---|
| 99 | A=fscanf(fid,'%g %g',[params(1) params(2)*params(3)]);
|
---|
[12291] | 100 | B=A(1,:); B=reshape(B,[params(3),params(2)])';
|
---|
| 101 | E=A(2,:); E=reshape(E,[params(3),params(2)])';
|
---|
[12290] | 102 | else
|
---|
| 103 | %do nothing
|
---|
| 104 | end
|
---|
| 105 | end
|
---|
| 106 | fclose(fid);
|
---|
| 107 | end
|
---|