Changeset 18109


Ignore:
Timestamp:
06/04/14 13:44:21 (11 years ago)
Author:
cborstad
Message:

BUG: wrong array size for nearest neighbors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/m/interp/interp.py

    r17892 r18109  
    4545        # create sub-vectors that just cover the limits of xi and yi
    4646        # TODO x,y not necessarily a grid, so need a better definition of dx,dy (e.g. average element size)
    47         dx=x[1]-x[0]
    48         dy=y[1]-y[0]
     47        dx=500
     48        dy=500
     49        #dx=x[1]-x[0]
     50        #dy=y[1]-y[0]
    4951        xlim=[min(xi)-dx,max(xi)+dx]
    5052        ylim=[min(yi)-dy,max(yi)+dy]
     
    7678                xyinterp=npy.dstack([xi,yi])[0]
    7779                xg,yg=npy.meshgrid(subx,suby)
    78                 xydata=npy.dstack([xg.ravel(),yg.ravel()])[0]
     80                xydata=npy.dstack([subx,suby])[0]
    7981                tree=cKDTree(xydata)
    8082                nearest=tree.query(xyinterp)[1]
Note: See TracChangeset for help on using the changeset viewer.