Changeset 25734
- Timestamp:
- 11/03/20 12:21:13 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpBedmachineGreenland.m
r25733 r25734 54 54 morlighem2013nc=['/home/ModelData/Greenland/BedMachine/' basename '-' ncdate '.nc']; 55 55 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'); 58 57 end 59 58 … … 82 81 data(find(data==-9999))=NaN; 83 82 84 ydata=flipud(ydata);85 data=flipud(data);86 87 83 disp([' -- BedMachine Greenland: interpolating ' string]); 88 84 if strcmp(string,'mask') | strcmp(string,'source'), 89 85 %Need nearest neighbor to avoid interpolation between 0 and 2 90 output = InterpFromGrid ToMesh(xdata,ydata,data,double(X),double(Y),'nearest');86 output = InterpFromGrid(xdata,ydata,data,double(X),double(Y),'nearest'); 91 87 else 92 93 output = InterpFromGridToMesh(xdata,ydata,data,double(X),double(Y),NaN); 88 output = InterpFromGrid(xdata,ydata,data,double(X),double(Y)); 94 89 end 95 90
Note:
See TracChangeset
for help on using the changeset viewer.