Changeset 2535


Ignore:
Timestamp:
10/26/09 13:47:12 (15 years ago)
Author:
Mathieu Morlighem
Message:

fixed latlon option that uses ll2xy_bak now (to be fixed)

Location:
issm/trunk/src/m
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/m/classes/public/display/displaycontrol.m

    r2365 r2535  
    2525        fielddisplay(md,'cm_maxdmp_slope','dampening coefficient applied to parameter above maximum, 0 if not applied');
    2626        fielddisplay(md,'cm_min','absolute minimum acceptable value of the inversed parameter');
    27         fielddisplay(md,'cm_max','absolute minimum acceptable value of the inversed parameter');
     27        fielddisplay(md,'cm_max','absolute maximum acceptable value of the inversed parameter');
    2828        fielddisplay(md,'meanvel','velocity scaling factor when evaluating relative or logarithmic misfit');
    2929        fielddisplay(md,'epsvel','for relative fit, avoids misfit becoming infinity, for logarithmic fit, threshold for velocity');
  • issm/trunk/src/m/classes/public/plot/latlonoverlay.m

    r2439 r2535  
    8181                latitudes=lat';
    8282                longitudes=lon(i)*ones(length(latitudes),1);
    83                 [x,y]=ll2xy(latitudes,longitudes);
     83                [x,y]=ll2xy_bak(latitudes,longitudes);
    8484                pos=find(x<=xlimits(2) & x>=xlimits(1) & y<=ylimits(2) & y>=ylimits(1));
    8585                if length(pos)<=1,
    8686                        continue;
    8787                end
     88                disp('ok2');
     89
    8890                x=x(pos);y=y(pos);
    8991
     
    123125                longitudes=lon';
    124126                latitudes=lat(i)*ones(length(longitudes),1);
    125                 [x,y]=ll2xy(latitudes,longitudes);
     127                [x,y]=ll2xy_bak(latitudes,longitudes);
    126128                pos=find(x<=xlimits(2) & x>=xlimits(1) & y<=ylimits(2) & y>=ylimits(1));
    127129                if length(pos)<=1,
Note: See TracChangeset for help on using the changeset viewer.