Index: /issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpBedmachineGreenland.m
===================================================================
--- /issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpBedmachineGreenland.m	(revision 27276)
+++ /issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpBedmachineGreenland.m	(revision 27277)
@@ -45,5 +45,4 @@
 		['/Users/larour/ModelData/BedMachine/' basename '-' ncdate '.nc'],...
 		['./' basename '-' ncdate '.nc'],...
-		'/media/vincent/TOSH4TB/GeorgiaTech/DataSearch/BedMachine/BedMachineGreenland-2021-04-20.nc',...
 		};
 
@@ -90,9 +89,7 @@
 if strcmp(string,'mask') | strcmp(string,'source'),
 	%Need nearest neighbor to avoid interpolation between 0 and 2
-	%output = InterpFromGrid(xdata,ydata,data,double(X),double(Y),'nearest');
-	output = InterpFromGridToMesh(xdata,flipud(ydata),flipud(data),double(X),double(Y),NaN); %VV
+	output = InterpFromGrid(xdata,ydata,data,double(X),double(Y),'nearest');
 else
-	%output = InterpFromGrid(xdata,ydata,data,double(X),double(Y));
-	output = InterpFromGridToMesh(xdata,flipud(ydata),flipud(data),double(X),double(Y),NaN); %VV
+	output = InterpFromGrid(xdata,ydata,data,double(X),double(Y));
 end
 
Index: /issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpSeaRISE.m
===================================================================
--- /issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpSeaRISE.m	(revision 27276)
+++ /issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpSeaRISE.m	(revision 27277)
@@ -58,8 +58,4 @@
 			searisenc='/totten_1/ModelData/SeaRISE/Antarctica_5km_dev1.0.nc';
 		end
-   case {'vincentxps159500'}
-		if hemisphere==1
-			searisenc = '/media/vincent/TOSH4TB/GeorgiaTech/ISSM/fromSeroussi/GrIS04Feb2022/seariseData/Greenland_5km_dev1.2.nc';
-		end
 	otherwise
 		error('hostname not supported yet');
@@ -84,9 +80,7 @@
 if verbose, disp(['   -- SeaRISE: interpolating ' string]); end
 if strcmpi(string,'LandMask');
-	%dataout = InterpFromGrid(xdata,ydata,data,xproj,yproj,'nearest');
-	dataout = InterpFromGridToMesh(xdata,ydata,data,xproj,yproj,NaN); %VV
+	dataout = InterpFromGrid(xdata,ydata,data,xproj,yproj,'nearest');
 else
-	%dataout = InterpFromGrid(xdata,ydata,data,xproj,yproj);
-	dataout = InterpFromGridToMesh(xdata,ydata,data,xproj,yproj,NaN); %VV
+	dataout = InterpFromGrid(xdata,ydata,data,xproj,yproj);
 end
 dataout = reshape(dataout,size(X,1),size(X,2));
