Changeset 9226


Ignore:
Timestamp:
08/09/11 14:38:01 (14 years ago)
Author:
Mathieu Morlighem
Message:

Added posting option for BIG overlays

Location:
issm/trunk/src/m/model
Files:
2 edited

Legend:

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

    r8472 r9226  
    115115%Select plot area
    116116subplot(plotlines,plotcols,i);
    117 %uncomment following lines to have more space
    118 %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);
    124117
    125118%Plot:
  • issm/trunk/src/m/model/radarpower.m

    r8735 r9226  
    1111
    1212%If gdal does not work, uncomment the following line
    13 %setenv('LD_LIBRARY_PATH','');
     13setenv('LD_LIBRARY_PATH','');
    1414
    1515%Parse inputs
     
    2121xlim=getfieldvalue(options,'xlim',[min(md.x) max(md.x)]);
    2222ylim=getfieldvalue(options,'ylim',[min(md.y) max(md.y)]);
     23posting=getfieldvalue(options,'posting',0); % 0 -> image posting default
    2324
    2425%find gdal coordinates
     
    4546                numcols=floor((xmax-xmin)/geom(1)); % x posting
    4647                numrows=floor((ymax-ymin)/geom(4)); % y posting
     48                pixelskip=max(1,ceil(posting/geom(1)));
    4749
    4850                %Read and crop file
     
    5052                im=imread(jpgim);
    5153                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)));
    5355                md.sarxm=(xmin:(xmax-xmin)/(size(md.sarpwr,2)-1):xmax);
    5456                md.sarym=(ymin:(ymax-ymin)/(size(md.sarpwr,1)-1):ymax);
     
    7274
    7375                %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)));
    7579                md.sarxm=(x0:(x1-x0)/(size(md.sarpwr,2)-1):x1);
    7680                md.sarym=(y0:(y1-y0)/(size(md.sarpwr,1)-1):y1);
Note: See TracChangeset for help on using the changeset viewer.