Changeset 25364
- Timestamp:
- 08/10/20 08:42:02 (5 years ago)
- Location:
- issm/trunk-jpl/src/m
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/modules/CoordTransform.m
r24788 r25364 8 8 % xout, yout: output coordinates (in new projection) 9 9 % projin,projout: input/output projection string (PROJ) 10 % 11 % Example of Projections: 12 % 13 % lat/lon = '+init=epsg:4326' 14 % lat/lon = '+proj=longlat +datum=WGS84' 15 % 16 % ll2xy default equivalent (uses with Hugues Ellispoid S) 17 % Greenland = '+proj=stere +lat_0=90 +lat_ts=70 +lon_0=-45 +k=1 +x_0=0 +y_0=0 +a=6378273 +b=6356889.448564109 +units=m +no_defs' 18 % Antarctica = '+proj=stere +lat_0=-90 +lat_ts=-71 +lon_0=0 +k=1 +x_0=0 +y_0=0 +a=6378273 +b=6356889.448564109 +units=m +no_defs' 19 % Bamber Greenland = '+proj=stere +lat_0=90 +lat_ts=71 +lon_0=-39 +k=1 +x_0=0 +y_0=0 +ellps=WGS84 +datum=WGS84 +units=m +no_defs' 20 % 21 % for latitude/longitude, x is longitude and y latitude and the angles are in rad 10 22 % 11 23 % This function will only work of PROJ has been installed in externalpackages -
issm/trunk-jpl/src/m/parameterization/parameterize.m
r13646 r25364 36 36 37 37 %rename parameter file 38 me2.message=regexprep(me2.message,[temporaryname '.m'],parametername);39 38 for i=1:length(me2.stack)-1, 40 me2.stack(i).file=regexprep(me2.stack(i).file,[temporaryname '.m'],parametername); 41 me2.stack(i).name=regexprep(me2.stack(i).name,[temporaryname],parametername); 39 if strcmp(me2.stack(i).name,temporaryname) 40 me2.stack(i).file = strrep(me2.stack(i).file,temporaryname,parametername); 41 me2.stack(i).name = parametername; 42 end 42 43 if strcmp(me2.stack(i).name,'parameterize'), 43 44 %remove error (eval(temporaryname);) misleading
Note:
See TracChangeset
for help on using the changeset viewer.