Changeset 2536
- Timestamp:
- 10/26/09 13:54:14 (15 years ago)
- Location:
- issm/trunk/src/m
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/classes/public/plot/latlonoverlay.m
r2535 r2536 81 81 latitudes=lat'; 82 82 longitudes=lon(i)*ones(length(latitudes),1); 83 [x,y]= ll2xy_bak(latitudes,longitudes);83 [x,y]=mapll(latitudes,longitudes,'s'); 84 84 pos=find(x<=xlimits(2) & x>=xlimits(1) & y<=ylimits(2) & y>=ylimits(1)); 85 85 if length(pos)<=1, 86 86 continue; 87 87 end 88 disp('ok2');89 90 88 x=x(pos);y=y(pos); 91 89 … … 125 123 longitudes=lon'; 126 124 latitudes=lat(i)*ones(length(longitudes),1); 127 [x,y]= ll2xy_bak(latitudes,longitudes);125 [x,y]=mapll(latitudes,longitudes,'s'); 128 126 pos=find(x<=xlimits(2) & x>=xlimits(1) & y<=ylimits(2) & y>=ylimits(1)); 129 127 if length(pos)<=1,
Note:
See TracChangeset
for help on using the changeset viewer.