Changeset 25734


Ignore:
Timestamp:
11/03/20 12:21:13 (4 years ago)
Author:
dlcheng
Message:

CHG: Revert modification to contrib/morlighem/modeldata/interpBedmachineGreenland.m

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpBedmachineGreenland.m

    r25733 r25734  
    5454                morlighem2013nc=['/home/ModelData/Greenland/BedMachine/' basename '-' ncdate '.nc'];
    5555        otherwise
    56                 morlighem2013nc=['/Users/larour/ModelData/BedMachine/' basename '-' ncdate '.nc'];
    57                 disp('machine not supported yet, using default path /Users/larour/ModelData/BedMachine/');
     56                error('machine not supported yet');
    5857end
    5958
     
    8281data(find(data==-9999))=NaN;
    8382
    84 ydata=flipud(ydata);
    85 data=flipud(data);
    86    
    8783disp(['   -- BedMachine Greenland: interpolating ' string]);
    8884if strcmp(string,'mask') | strcmp(string,'source'),
    8985        %Need nearest neighbor to avoid interpolation between 0 and 2
    90         output = InterpFromGridToMesh(xdata,ydata,data,double(X),double(Y),'nearest');
     86        output = InterpFromGrid(xdata,ydata,data,double(X),double(Y),'nearest');
    9187else
    92    
    93         output = InterpFromGridToMesh(xdata,ydata,data,double(X),double(Y),NaN);
     88        output = InterpFromGrid(xdata,ydata,data,double(X),double(Y));
    9489end
    9590
Note: See TracChangeset for help on using the changeset viewer.