Changeset 7028
- Timestamp:
- 01/12/11 08:09:22 (14 years ago)
- 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 210 210 applyoptions(md,data2,options); 211 211 end 212 213 %do ground overlay on kml plot_unit? 214 if (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 222 end -
issm/trunk/src/m/model/plot/plotdoc.m
r6935 r7028 58 58 disp(' ''backgroundcolor'': plot background color. (default is ''w'')'); 59 59 disp(' ''figurebackgroundcolor'': figure background color. (default is ''none'')'); 60 disp(' ''coord'': ''xy'' (default) or ''latlon'''); 60 61 disp(' ''colorlevels'': N or {value1,valu2,value3,...} used if quiver, use different colors for the given number of colors or limits'); 61 62 disp(' ''colorbar'': add colorbar (string ''on'' or ''off'')'); … … 146 147 disp(' ''cdfleg'': (char, ''off'' to turn off cdf legends)'); 147 148 disp(' ''segmentnumbering'': (''off'' by default)'); 149 disp(' ''kmlgroundoverlay'': (''off'' by default)'); 150 disp(' ''kmlfilename'': (''tempfile.kml'' by default)'); 151 disp(' ''kmlroot'': (''./'' by default)'); 152 disp(' ''kmlimagename'': (''tempimage'' by default)'); 153 disp(' ''kmlimagetype'': (''png'' by default)'); 154 disp(' ''kmlresolution'': (1 by default)'); 155 disp(' ''kmlfolder'': (''Ground Overlay'' by default)'); 156 disp(' ''kmlfolderdescription'': ('''' by default)'); 157 disp(' ''kmlgroundoverlayname'': ('''' by default)'); 158 disp(' ''kmlgroundoverlaydescription'': ('''' by default)'); 159 148 160 disp(' any options (except ''data'') can be followed by ''#i'' where ''i'' is the subplot number, or ''#all'' if applied to all plots'); 149 161 disp(' '); -
issm/trunk/src/m/model/plot/processmesh.m
r5024 r7028 14 14 if (isempty(data) | ~isstruct(data)), 15 15 %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; 25 33 26 34 %is it a 2d plot? … … 39 47 %layer projection? 40 48 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 41 52 %we modify the mesh temporarily to a 2d mesh from which the 3d mesh was extruded. 42 53 x=x2d;
Note:
See TracChangeset
for help on using the changeset viewer.