Changeset 9226
- Timestamp:
- 08/09/11 14:38:01 (14 years ago)
- Location:
- issm/trunk/src/m/model
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/m/model/plot/plot_overlay.m
r8472 r9226 115 115 %Select plot area 116 116 subplot(plotlines,plotcols,i); 117 %uncomment following lines to have more space118 %P=get(gca,'pos');119 %P(3)=P(3)+0.07;120 %P(4)=P(4)+0.07;121 %%P(2)=P(2)+0.08;122 %P(1)=P(1)-0.03;123 %set(gca,'pos',P);124 117 125 118 %Plot: -
issm/trunk/src/m/model/radarpower.m
r8735 r9226 11 11 12 12 %If gdal does not work, uncomment the following line 13 %setenv('LD_LIBRARY_PATH','');13 setenv('LD_LIBRARY_PATH',''); 14 14 15 15 %Parse inputs … … 21 21 xlim=getfieldvalue(options,'xlim',[min(md.x) max(md.x)]); 22 22 ylim=getfieldvalue(options,'ylim',[min(md.y) max(md.y)]); 23 posting=getfieldvalue(options,'posting',0); % 0 -> image posting default 23 24 24 25 %find gdal coordinates … … 45 46 numcols=floor((xmax-xmin)/geom(1)); % x posting 46 47 numrows=floor((ymax-ymin)/geom(4)); % y posting 48 pixelskip=max(1,ceil(posting/geom(1))); 47 49 48 50 %Read and crop file … … 50 52 im=imread(jpgim); 51 53 im=im(firstrow:firstrow+numrows-1,firstcol:firstcol+numcols-1); 52 md.sarpwr=double(flipud(im ));54 md.sarpwr=double(flipud(im(1:pixelskip:end,1:pixelskip:end))); 53 55 md.sarxm=(xmin:(xmax-xmin)/(size(md.sarpwr,2)-1):xmax); 54 56 md.sarym=(ymin:(ymax-ymin)/(size(md.sarpwr,1)-1):ymax); … … 72 74 73 75 %Read in temp.tif: 74 md.sarpwr=double(flipud(imread('temp.tif','TIFF'))); 76 im=imread('temp.tif','TIFF'); 77 pixelskip=max(1,ceil(posting/((x1-x0)/(size(im,2))))); 78 md.sarpwr=double(flipud(im(1:pixelskip:end,1:pixelskip:end))); 75 79 md.sarxm=(x0:(x1-x0)/(size(md.sarpwr,2)-1):x1); 76 80 md.sarym=(y0:(y1-y0)/(size(md.sarpwr,1)-1):y1);
Note:
See TracChangeset
for help on using the changeset viewer.