Changeset 25068
- Timestamp:
- 06/18/20 20:03:50 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/boundary.m
r25065 r25068 98 98 label=getfieldvalue(options,'label','on'); 99 99 100 if (exist(options,'epsg'),101 if exist(options,'proj') ),100 if exist(options,'epsg'), 101 if exist(options,'proj'), 102 102 error('Boundary plot error message: cannot specify epsg and proj at the same time for plot projection'); 103 end 103 104 proj=epsg2proj(getfieldvalue(options,'epsg')); 104 105 elseif exist(options,'proj'), … … 186 187 label=getfieldvalue(options,'label','on'); 187 188 188 if (exist(options,'epsg'),189 if exist(options,'proj') ),189 if exist(options,'epsg'), 190 if exist(options,'proj'), 190 191 error('Boundary plot error message: cannot specify epsg and proj at the same time for plot projection'); 192 end 191 193 proj=epsg2proj(getfieldvalue(options,'epsg')); 192 194 elseif exist(options,'proj'),
Note:
See TracChangeset
for help on using the changeset viewer.