Hi Bborie,<div><br></div><div>As far as I can tell, ST_MapAlgebra<span> requires the same grid alignment and every other aspect? If so, this wouldn't fit use-cases where resampling is needed. Your code does not work for me. I get the following error,</span></div>

<div><span><br></span></div><div><span>ST_MapAlgebra: Provided raster do not have the same alignment. Aborting</span></div><div><span><br></span></div><div><span>I worked to figure out what was going on and went through some iterations. As far as I can figure out, </span>ST_MapAlgebra(rast,rast) requires two tiles of the exact same dimensions and proportions? So the following,</div>

<div><span><br></span></div>
<div><font color="#222222" face="arial, sans-serif">SELECT ST_MapAlgebra(rast, ST_AsRaster(ST_Intersection(ST_Envelope(rast), tg),rast), 'rast1') FROM marso CROSS JOIN GEOMETRYFROMTEXT('MULTIPOLYGON(((10 10, 10 0, 0 0, 0 10, 10 10)))',4326) tg WHERE ST_Intersects(rast,GEOMETRYFROMTEXT('MULTIPOLYGON(((10 10, 10 0, 0 0, 0 10, 10 10)))',4326))</font></div>

<div><font color="#222222" face="arial, sans-serif"><br></font></div><div><font color="#222222" face="arial, sans-serif">Takes my bounding box, crops it to only portion that is within a tile, and then tries to ST_MapAlgebra, but will fail with the same error as above. However, this one works fine,</font></div>

<div><font color="#222222" face="arial, sans-serif"><br></font></div><div><font color="#222222" face="arial, sans-serif">SELECT ST_MapAlgebra(rast, ST_AsRaster(ST_Envelope(rast), rast), 'rast1') FROM marso LIMIT 1</font></div>

<div><font color="#222222" face="arial, sans-serif"><br></font></div><div><font color="#222222" face="arial, sans-serif">I assume because the tiles are the exact same. </font></div><div><font color="#222222" face="arial, sans-serif"><br>

</font></div><div><font color="#222222" face="arial, sans-serif">Thanks,</font></div><div><font color="#222222" face="arial, sans-serif"><br></font></div><div><font color="#222222" face="arial, sans-serif">Andrew</font></div>

<div><font color="#222222" face="arial, sans-serif"><br></font></div><div><font color="#222222" face="arial, sans-serif"><br></font></div>