Changeset 6646


Ignore:
Timestamp:
11/23/10 15:02:24 (14 years ago)
Author:
seroussi
Message:

Fixed latlon

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk/src/m/model/plot/latlonoverlay.m

    r6642 r6646  
    5757end
    5858
    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'); end
    61 if length(md.long)~=md.numberofgrids, error('model field ''lon'' is empty'); end
    62 
    6359%what are the x and y limits
    6460xlimits=getfieldvalue(options,'xlim',xlim);
     
    8379        l=line(x,y,'Color',color);
    8480
    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
    8784                xcorner=x(ind);            ycorner=y(ind);
    8885                xcorner2=x(max(ind-10,1)); ycorner2=y(max(ind-10,1));
     
    126123
    127124        if numbering,
    128                 ind=round(9*length(x)/10);
     125                ind=length(x)-2*longap;
     126                if (ind<=0), continue; end
    129127                xcorner=x(ind);            ycorner=y(ind);
    130128                xcorner2=x(max(ind-10,1)); ycorner2=y(max(ind-10,1));
Note: See TracChangeset for help on using the changeset viewer.