Changeset 26624
- Timestamp:
- 11/15/21 10:47:50 (3 years ago)
- Location:
- issm/trunk-jpl/src/m/contrib/morlighem/modeldata
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpBedmap2.m
r25631 r26624 18 18 % [dataout] = interpBedmap2(X,Y,string) 19 19 20 nc = '/home/ModelData/Antarctica/BedMap2/bedmap2_bin/Bedmap2.nc'; 20 switch (oshostname()), 21 case {'ronne'} 22 nc = '/home/ModelData/Antarctica/BedMap2/bedmap2_bin/Bedmap2.nc'; 23 case {'totten'} 24 nc = '/totten_1/ModelData/Antarctica/BedMap2/bedmap2_bin/Bedmap2.nc'; 25 otherwise 26 error('hostname not supported yet'); 27 end 21 28 if exist(nc,'file') 22 29 if strcmp(string,'thickness_uncertainty_5km') -
issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpGeoid.m
r23873 r26624 6 6 case {'ronne'} 7 7 rootname='/home/ModelData/Global/Geoid/eigen-6c4-1970.mat'; 8 case {'totten'} 9 rootname='/totten_1/ModelData/Global/Geoid/eigen-6c4-1970.mat'; 8 10 otherwise 9 11 error('machine not supported yet'); -
issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpRACMOant.m
r23873 r26624 1 1 function smb = interpRACMOant(x,y); 2 2 3 smbfile = '/home/ModelData/Antarctica/RACMO2SMB/SMB_RACMO2.3_1979_2011.nc'; 3 switch oshostname(), 4 case {'ronne'} 5 smbfile = '/home/ModelData/Antarctica/RACMO2SMB/SMB_RACMO2.3_1979_2011.nc'; 6 case {'totten'} 7 smbfile = '/totten_1/ModelData/Antarctica/RACMO2SMB/SMB_RACMO2.3_1979_2011.nc'; 8 otherwise 9 error('machine not supported yet'); 10 end 4 11 LAT=ncread(smbfile,'lat2d')'; 5 12 LON=ncread(smbfile,'lon2d')'; -
issm/trunk-jpl/src/m/contrib/morlighem/modeldata/interpSmith2020.m
r25798 r26624 33 33 path='/home/ModelData/Antarctica/DHDTSmith/'; 34 34 end 35 case {'totten'} 36 if strcmp(string,'gris_filt') | strcmp(string,'gris') 37 path='/totten_1/ModelData/Greenland/DHDTSmith/'; 38 else 39 path='/totten_1/ModelData/Antarctica/DHDTSmith/'; 40 end 35 41 case {'recruta'} 36 42 path='/home/santos/ModelData/ICESat1_ICESat2_mass_change/';
Note:
See TracChangeset
for help on using the changeset viewer.