> What I wish to now do is to use those spot heights to create an elevation 
> raster
> layer via which all NoDataValued pixels have an elevation set that is 
> interpreted
> from the spot heights around it.
> 
> Has anyone any suggestions as to how this can be done by PostGIS's ST_Raster?
> (ST_MapAlgebra perhaps etc?)

We don't have any interpolation algorithm yet. But we have 
ST_MapAlgebraFctNgb() which compute pixels value as focal functions (or moving 
windows). I not sure to which degree you can implement interpolation with 
moving windows but if your points are close to each other enough you could 
compute the mean of the point surrounding each point. Have a look at:

http://postgis.refractions.net/documentation/manual-svn/RT_ST_MapAlgebraFctNgb.html

Pierre
_______________________________________________
postgis-users mailing list
postgis-users@postgis.refractions.net
http://postgis.refractions.net/mailman/listinfo/postgis-users

Reply via email to