Changeset 7028


Ignore:
Timestamp:
01/12/11 08:09:22 (14 years ago)
Author:
Eric.Larour
Message:

Added kmlgroundoverlay capability to plot routine.

Location:
issm/trunk/src/m/model/plot
Files:
1 added
3 edited

Legend:

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

    r6976 r7028  
    210210        applyoptions(md,data2,options);
    211211end
     212
     213%do ground overlay on kml plot_unit?
     214if (strcmpi(getfieldvalue(options,'kmlgroundoverlay','off'),'on')),
     215        if ((nlines*ncols~=1) | (i~=1)),
     216                error('cannot kmlgroundoverlay on multi-plots');
     217        end
     218       
     219        %call routine to build kml file and image that goes with it.
     220        kmlgroundoverlay(md,options);
     221
     222end
  • issm/trunk/src/m/model/plot/plotdoc.m

    r6935 r7028  
    5858disp('       ''backgroundcolor'': plot background color. (default is ''w'')');
    5959disp('       ''figurebackgroundcolor'': figure background color. (default is ''none'')');
     60disp('       ''coord'':  ''xy'' (default) or ''latlon''');
    6061disp('       ''colorlevels'':  N or {value1,valu2,value3,...} used if quiver, use different colors for the given number of colors or limits');
    6162disp('       ''colorbar'': add colorbar (string ''on'' or ''off'')');
     
    146147disp('       ''cdfleg'': (char, ''off'' to turn off cdf legends)');
    147148disp('       ''segmentnumbering'': (''off'' by default)');
     149disp('       ''kmlgroundoverlay'': (''off'' by default)');
     150disp('       ''kmlfilename'': (''tempfile.kml'' by default)');
     151disp('       ''kmlroot'': (''./'' by default)');
     152disp('       ''kmlimagename'': (''tempimage'' by default)');
     153disp('       ''kmlimagetype'': (''png'' by default)');
     154disp('       ''kmlresolution'': (1 by default)');
     155disp('       ''kmlfolder'': (''Ground Overlay'' by default)');
     156disp('       ''kmlfolderdescription'': ('''' by default)');
     157disp('       ''kmlgroundoverlayname'': ('''' by default)');
     158disp('       ''kmlgroundoverlaydescription'': ('''' by default)');
     159
    148160disp('       any options (except ''data'') can be followed by ''#i'' where ''i'' is the subplot number, or ''#all'' if applied to all plots');
    149161disp('  ');
  • issm/trunk/src/m/model/plot/processmesh.m

    r5024 r7028  
    1414if (isempty(data) | ~isstruct(data)),
    1515        %first load x,y, etc ... to speed up plot
    16         x=md.x;
    17         x2d=md.x2d;
    18         y=md.y;
    19         y2d=md.y2d;
    20         z=md.z;
    21         z2d=md.z2d;
    22         elements2d=md.elements2d;
    23         elements=md.elements;
    24         elements_type2d=md.elements_type2d;
     16
     17        if ~strcmpi(getfieldvalue(options,'coord','xy'),'latlon'),
     18                x=md.x;
     19                x2d=md.x2d;
     20                y=md.y;
     21                y2d=md.y2d;
     22        else
     23                x=md.long;
     24                x2d=md.x2d;
     25                y=md.lat;
     26                y2d=md.y2d;
     27        end
     28                z=md.z;
     29                z2d=md.z2d;
     30                elements2d=md.elements2d;
     31                elements=md.elements;
     32                elements_type2d=md.elements_type2d;
    2533
    2634        %is it a 2d plot?
     
    3947        %layer projection?
    4048        if getfieldvalue(options,'layer',0)>=1,
     49                if strcmpi(getfieldvalue(options,'coord','xy'),'latlon'),
     50                        error('processmesh error message: cannot work with 3D meshes for now');
     51                end
    4152                %we modify the mesh temporarily to a 2d mesh from which the 3d mesh was extruded.
    4253                x=x2d;
Note: See TracChangeset for help on using the changeset viewer.