Ignore:
Timestamp:
09/25/07 12:16:00 (17 years ago)
Author:
pinsard
Message:

typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Interpolation/extrapolate.pro

    r292 r295  
    33; @file_comments 
    44; extrapolate data (zinput) where maskinput equal 0 by filling step by 
    5 ; step the coastline points with the mean value of the 8 neighbourgs 
    6 ; (weighted by their mask value). 
     5; step the coastline points with the mean value of the 8 neighbors 
     6; (weighted by their mask values). 
    77; 
    88; @categories 
     
    129129    endif 
    130130; 
    131 ; we compute the weighted number of sea neighbourgs. 
    132 ; those 4 neighbours have a weight of 1: 
     131; we compute the weighted number of sea neighbors. 
     132; those 4 neighbors have a weight of 1: 
    133133;    * 
    134134;   *+* 
    135135;    * 
    136136; 
    137 ; those 4 neighbours have a weight of 1/sqrt(2): 
     137; those 4 neighbors have a weight of 1/sqrt(2): 
    138138; 
    139139;    * * 
     
    148148             +sqrtinv*(msk[land+nx2+1]+msk[land+nx2-1] $ 
    149149                       +msk[land-nx2+1]+msk[land-nx2-1]) 
    150 ; list all the points that have sea neighbourgs 
     150; list all the points that have sea neighbors 
    151151    ok = where(weight GT 0) 
    152152; the coastline points 
    153153    coast = land[ok] 
    154 ; their weighted number of sea neighbourgs. 
     154; their weighted number of sea neighbors. 
    155155    weight = weight[temporary(ok)] 
    156156;--------------------------------------------------------------- 
Note: See TracChangeset for help on using the changeset viewer.