Changeset 12254


Ignore:
Timestamp:
05/16/12 13:07:23 (13 years ago)
Author:
cborstad
Message:

some temp hardcoded changes prior to merging

Location:
issm/branches/trunk-jpl-damage/src/m/model/plot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-jpl-damage/src/m/model/plot/applyoptions.m

    r12197 r12254  
    427427                [A.x A.y]=ll2xy(A.x,A.y,+1,45,70);
    428428        elseif strcmpi(md.mesh.hemisphere,'s') | strcmpi(md.mesh.hemisphere,'south'),
    429                 A=expread([ jplsvn() '/projects/Exp/Antarctica.exp']);
     429                %A=expread([ jplsvn() '/projects/Exp/Antarctica.exp']);
     430                A=expread([ jplsvn() '/projects/Exp/AntarcticPeninsula.exp']);
    430431        else
    431432                error('applyoptions error message: hemisphere not defined');
    432433        end
    433         Ax=[min(A.x) max(A.x)];
    434         Ay=[min(A.y) max(A.y)];
     434        Ax=[min(A.x)-1e5 max(A.x)+1e5];
     435        Ay=[min(A.y)-1e5 max(A.y)+1e5];
    435436        %if we are zooming on a basin, don't take the mesh for the boundaries!
    436437        if exist(options,'basin'),
  • issm/branches/trunk-jpl-damage/src/m/model/plot/scaleruler.m

    r12199 r12254  
    88structure=getfieldvalue(options,'scaleruler');
    99fontsize=getfieldvalue(options,'scaleruler_fontsize',16);
    10 units=getfieldvalue(options,'unit');
     10units=getfieldvalue(options,'unit',1);
    1111
    1212%Go through structure and fill missing arguments
Note: See TracChangeset for help on using the changeset viewer.