Changeset 19038
- Timestamp:
- 01/26/15 11:32:43 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/export_gl.py
r19036 r19038 1 def export_gl(md,varargin) 1 def export_gl(md,varargin): 2 2 3 3 templist=plotoptions(varargin[:]); … … 25 25 #Deal with contour {{{ 26 26 27 contour_lat1=md.mesh.lat(md.mesh.segments( 27 contour_lat1=md.mesh.lat(md.mesh.segments(:,1)); 28 28 contour_lat2=md.mesh.lat(md.mesh.segments(:,2)); 29 29 contour_long1=md.mesh.long(md.mesh.segments(:,1)); … … 35 35 R2=6371000*ones(len(contour_surface2),1)+scaling_factor*contour_surface2; 36 36 37 contourx1 = R1 .* cosd(contour_lat1) .* cosd(contour_long1);38 contoury1 = R1 .* cosd(contour_lat1) .* sind(contour_long1);39 contourz1 = R1 .* sind(contour_lat1);37 contourx1 = R1 * cosd(contour_lat1) * cosd(contour_long1; 38 contoury1 = R1 * cosd(contour_lat1) * sind(contour_long1); 39 contourz1 = R1 * sind(contour_lat1); 40 40 41 contourx2 = R2 .* cosd(contour_lat2) .* cosd(contour_long2);42 contoury2 = R2 .* cosd(contour_lat2) .* sind(contour_long2);43 contourz2 = R2 .* sind(contour_lat2);41 contourx2 = R2 * cosd(contour_lat2) * cosd(contour_long2); 42 contoury2 = R2 * cosd(contour_lat2) * sind(contour_long2); 43 contourz2 = R2 * sind(contour_lat2); 44 44 45 45 … … 64 64 R=6371000*ones(numberofvertices,1)+scaling_factor*surface; 65 65 66 x = R .* cosd(lat) .* cosd(long);67 y = R .* cosd(lat) .* sind(long);68 z = R .* sind(lat);66 x = R * cosd(lat) * cosd(long); 67 y = R * cosd(lat) * sind(long); 68 z = R * sind(lat); 69 69 70 70 … … 78 78 #Deal with data: 79 79 results=struct([]); 80 for i in xrange(1,len(optionslist)) ,80 for i in xrange(1,len(optionslist)): 81 81 options=optionslist[i]; 82 82 options=checkplotoptions(md,options); … … 86 86 87 87 label=getfieldvalue(options,'label',''); 88 if strcmpi(label,'') ,88 if strcmpi(label,''): 89 89 #create generic label: 90 90 label=['data' num2str(i)]; … … 92 92 93 93 shortlabel=getfieldvalue(options,'shortlabel',''); 94 if strcmpi(shortlabel,'') ,94 if strcmpi(shortlabel,''): 95 95 #create generic short label: 96 96 shortlabel=['data' num2str(i)]; 97 97 results[i].shortlabel=shortlabel; 98 98 99 if size(data,2)>1,99 if len(data[2])>1: 100 100 time_range=getfieldvalue(options,'time_range',[0 100]); 101 101 results[i].time_range=time_range; 102 102 103 103 unit=getfieldvalue(options,'unit',''); 104 if strcmpi(unit,'') ,104 if strcmpi(unit,''): 105 105 #create generic unit: 106 106 unit='SI';
Note:
See TracChangeset
for help on using the changeset viewer.