Changeset 6646
- Timestamp:
- 11/23/10 15:02:24 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk/src/m/model/plot/latlonoverlay.m ¶
r6642 r6646 57 57 end 58 58 59 %Find lat and lon that fit within the bounds of our image.60 if length(md.lat)~=md.numberofgrids, error('model field ''lat'' is empty'); end61 if length(md.long)~=md.numberofgrids, error('model field ''lon'' is empty'); end62 63 59 %what are the x and y limits 64 60 xlimits=getfieldvalue(options,'xlim',xlim); … … 83 79 l=line(x,y,'Color',color); 84 80 85 if numbering, 86 ind=round(9*length(x)/10); 81 if numbering 82 ind=length(x)-2*latgap; 83 if (ind<=0), continue; end 87 84 xcorner=x(ind); ycorner=y(ind); 88 85 xcorner2=x(max(ind-10,1)); ycorner2=y(max(ind-10,1)); … … 126 123 127 124 if numbering, 128 ind=round(9*length(x)/10); 125 ind=length(x)-2*longap; 126 if (ind<=0), continue; end 129 127 xcorner=x(ind); ycorner=y(ind); 130 128 xcorner2=x(max(ind-10,1)); ycorner2=y(max(ind-10,1));
Note:
See TracChangeset
for help on using the changeset viewer.