<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=us-ascii"><meta name=Generator content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=EN-GB link=blue vlink=purple><div class=WordSection1><p class=MsoNormal>Dear List,<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>First of all, I wish to congratulate the postgis developers with the (new to me) raster functionality. It’s a real game changer.<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>I am experimenting with (free!) Landsat-8 data, generating indices through queries. Landsat-8 bands come as 16BUI type data.<o:p></o:p></p><p class=MsoNormal>In order to avoid integer division issues, I cast to 32BF as follows:<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>select st_reclass(rast, ‘0-65535:0-65535’, ‘32BF’) from l8tiled where rid = 5644  -- l8tiles holds the tiled single-band rasters, rid is an arbitrary tile ID<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>OR<o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>select st_mapalgebra(rast, ‘32BF’, ‘[rast]’) from l8tiled where rid = 5644  <o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>Both work, with the first being the fastest (because implement directly in C). 11 and 21 ms for a 64 by 64 pixel tile, respectively (on Linux 64 bit/Dell T7400 PostgreSQL 9.3/Postgis 2.1).<o:p></o:p></p><p class=MsoNormal>The first is not very elegant, though, as it requires the somewhat awkward reclassexpr. <o:p></o:p></p><p class=MsoNormal><o:p> </o:p></p><p class=MsoNormal>Is there a neater way to do this? If I use ‘’ (empty string) for the reclassexpr, the cast does not work (i.e. the result remains 16BUI).<o:p></o:p></p><p class=MsoNormal> <o:p></o:p></p><p class=MsoNormal>Guido Lemoine<o:p></o:p></p></div></body></html>