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

Added kmlgroundoverlay capability to plot routine.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.