Re: [gdal-dev] Gap-filling rasters

2011-04-05 Thread Chaitanya kumar CH
Jose, I didn't realize you were going to interpolate between bands as well. Is this temperol data? This operation is actually performed by GDALFillNodata() method. So, modifying the script is not going to work. You can look at the source of GDALFillNodata() method and decide on what to do. On Tu

Re: [gdal-dev] Gap-filling rasters

2011-04-05 Thread Jose Gomez-Dans
Hi, Maybe I could look into updating it so it can deal with multi-band datasets (ie, interpolate in 3D rather than in 2D)? On 5 April 2011 14:04, Chaitanya kumar CH wrote: > Jose, > > Perhaps the python script, gdal_fillnodata.py, can help you. > http://www.gdal.org/gdal_fillnodata.html > You w

Re: [gdal-dev] Gap-filling rasters

2011-04-05 Thread Chaitanya kumar CH
Jose, Perhaps the python script, gdal_fillnodata.py, can help you. http://www.gdal.org/gdal_fillnodata.html You will need GDAL's python bindings to run this. On Tue, Apr 5, 2011 at 5:21 PM, Jose Gomez-Dans wrote: > Hi, > > I was wondering whether GDAL has the ability to interpolate multiband > r

[gdal-dev] Gap-filling rasters

2011-04-05 Thread Jose Gomez-Dans
Hi, I was wondering whether GDAL has the ability to interpolate multiband rasters. I have a NxMxL cube (ie, a raster with L bands :D), and a mask of the same size. The locations of my data cube where the associated mask is zero (say) need to be interpolated from the surrounding pixels in the cube,