<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Rounding and converting raster values in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083173#M43787</link>
    <description>&lt;P&gt;Had Dan not asked the (appropriate) question, and you answered, I could have never imagined your question was related to Dates.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me try putting it in a single expression&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Expression&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;16*((Con(("RASTER" - (RoundDown("RASTER"))== 0.5),RoundUp("RASTER"),RoundUp("RASTER" - 0.5)))-1)+1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 27 Jul 2021 19:08:54 GMT</pubDate>
    <dc:creator>JayantaPoddar</dc:creator>
    <dc:date>2021-07-27T19:08:54Z</dc:date>
    <item>
      <title>Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083062#M43769</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm using ArcGIS Pro 2.8.1. I have a raster layer whose values I would like to round and then convert into a corresponding value. For example, if the current value is 9.788, I would round that to 10 and convert that to 144. Is there a way to do this?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 14:15:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083062#M43769</guid>
      <dc:creator>BeckB</dc:creator>
      <dc:date>2021-07-27T14:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083081#M43771</link>
      <description>&lt;P&gt;A RoundUp() function of (Raster Value minus 0.5), inside a Con() function should work.&lt;/P&gt;&lt;P&gt;In the following example, The Raster Calculator is checking for the Round Value is equal to 10. If the argument is true it will return 144. Else it will return the original Raster Value.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;Con((RoundUp("RASTER" - 0.5)==10),144,"RASTER")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If required, you could further add Con() condition in place of the False Value (Nested condition). The ultimate False Value, I am keeping as 0 in this example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;Con((RoundUp("RASTER" - 0.5)==10),144,(Con((RoundUp("RASTER" - 0.5)==11),169,0)))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 15:10:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083081#M43771</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2021-07-27T15:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083085#M43773</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Thank you so much for this! Could you please clarify why 0.5 is subtracted?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 15:14:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083085#M43773</guid>
      <dc:creator>BeckB</dc:creator>
      <dc:date>2021-07-27T15:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083088#M43774</link>
      <description>&lt;P&gt;Good Question.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I couldn't find a function to do a proper Round, i.e. RoundDown values from decimal values of .0 to .499... and RoundUp Values from .5 to .99...&lt;/P&gt;&lt;P&gt;So deducting a 0.5 will always given me a value, which if Rounded Up, gives you the desired value.&lt;/P&gt;&lt;P&gt;A few examples&lt;/P&gt;&lt;P&gt;9.569 : 9.569-0.5=9.069: RoundUp(9.069)=10&lt;/P&gt;&lt;P&gt;9.0: 9.0-0.5=8.5: RoundUp(8.5)=9&lt;/P&gt;&lt;P&gt;9.25: 9.25-0.5=8.75: RoundUp(8.75)=9&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;*Just realised&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The only issue is with values ending with .5 decimals.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;9.5: 9.5-0.5=9.0: RoundUp(9.0)=9 (But you want 10 in this case)&lt;/EM&gt;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":pensive_face:"&gt;😔&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alternatively, you could add 0.5 and use RoundDown() function.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 15:30:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083088#M43774</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2021-07-27T15:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083091#M43775</link>
      <description>&lt;P&gt;That makes sense! What would your recommendation be in cases of 0.5 decimals?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 15:34:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083091#M43775</guid>
      <dc:creator>BeckB</dc:creator>
      <dc:date>2021-07-27T15:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083101#M43777</link>
      <description>&lt;P&gt;How about this? First run the following Expression in Raster Calculator.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;Con(("RASTER" - (RoundDown("RASTER"))== 0.5),RoundUp("RASTER"),"RASTER")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Use its output Raster as the input Raster of the expression in my first post. Like this&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;Con((RoundUp("NEWRASTER" - 0.5)==10),144,0)&lt;/LI-CODE&gt;&lt;P&gt;You may choose to create a model in Model Builder, if this is a repetitive process.&lt;/P&gt;&lt;P&gt;I don't want to complicate the expression. That's why providing the solution in two steps.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 16:11:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083101#M43777</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2021-07-27T16:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083129#M43781</link>
      <description>&lt;P&gt;Is this value the only one that you want to round?&lt;/P&gt;&lt;P&gt;What is the significance of rounding it to 10, then converting it to 144?&lt;/P&gt;&lt;P&gt;Are you trying to scale a raster's data to a new range?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 16:48:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083129#M43781</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-07-27T16:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083148#M43784</link>
      <description>&lt;P&gt;There are multiple values I would like to round. In a nutshell, I have satellite data recorded in 16-day intervals, which are numbered 1-23. I want to convert these numbers to the Julian day of year (i.e. the 2nd timestep, currently labelled 2, would be converted to day 16). I need to round the numbers so I can identify which day of year it is closest to (i.e. if the value was 2.34, I would assign it to the second timestep, day 16). Please let me know if you need further clarification!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 17:18:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083148#M43784</guid>
      <dc:creator>BeckB</dc:creator>
      <dc:date>2021-07-27T17:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083173#M43787</link>
      <description>&lt;P&gt;Had Dan not asked the (appropriate) question, and you answered, I could have never imagined your question was related to Dates.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me try putting it in a single expression&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Expression&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="sql"&gt;16*((Con(("RASTER" - (RoundDown("RASTER"))== 0.5),RoundUp("RASTER"),RoundUp("RASTER" - 0.5)))-1)+1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 19:08:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083173#M43787</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2021-07-27T19:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083178#M43788</link>
      <description>&lt;P&gt;Thank you both so much for catching this! JayanthaPoddar, could I ask again for you to clarify the purpose of subtracting 1?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 18:33:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083178#M43788</guid>
      <dc:creator>BeckB</dc:creator>
      <dc:date>2021-07-27T18:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083186#M43791</link>
      <description>&lt;P&gt;This is what I calculated. Please correct me if I am wrong.&lt;/P&gt;&lt;TABLE width="482"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="145"&gt;&lt;STRONG&gt;Result of Con Function&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;(Raster Value)&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="103"&gt;&lt;STRONG&gt;Con Function -1&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="166"&gt;&lt;STRONG&gt;Calculation of No. of Days&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="68"&gt;&lt;STRONG&gt;Julian Day&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;16 x 0&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;16 x 1&lt;/TD&gt;&lt;TD&gt;16&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;16 x 2&lt;/TD&gt;&lt;TD&gt;32&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;16 x 3&lt;/TD&gt;&lt;TD&gt;48&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;16 x 4&lt;/TD&gt;&lt;TD&gt;64&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;16 x 5&lt;/TD&gt;&lt;TD&gt;80&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;16 x 6&lt;/TD&gt;&lt;TD&gt;96&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;16 x 7&lt;/TD&gt;&lt;TD&gt;112&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;16 x 8&lt;/TD&gt;&lt;TD&gt;128&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;16 x 9&lt;/TD&gt;&lt;TD&gt;144&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;16 x 10&lt;/TD&gt;&lt;TD&gt;160&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;16 x 11&lt;/TD&gt;&lt;TD&gt;176&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;TD&gt;16 x 12&lt;/TD&gt;&lt;TD&gt;192&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;13&lt;/TD&gt;&lt;TD&gt;16 x 13&lt;/TD&gt;&lt;TD&gt;208&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;14&lt;/TD&gt;&lt;TD&gt;16 x 14&lt;/TD&gt;&lt;TD&gt;224&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;16&lt;/TD&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;16 x 15&lt;/TD&gt;&lt;TD&gt;240&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;16&lt;/TD&gt;&lt;TD&gt;16 x 16&lt;/TD&gt;&lt;TD&gt;256&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;18&lt;/TD&gt;&lt;TD&gt;17&lt;/TD&gt;&lt;TD&gt;16 x 17&lt;/TD&gt;&lt;TD&gt;272&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;19&lt;/TD&gt;&lt;TD&gt;18&lt;/TD&gt;&lt;TD&gt;16 x 18&lt;/TD&gt;&lt;TD&gt;288&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;19&lt;/TD&gt;&lt;TD&gt;16 x 19&lt;/TD&gt;&lt;TD&gt;304&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;16 x 20&lt;/TD&gt;&lt;TD&gt;320&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;22&lt;/TD&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;16 x 21&lt;/TD&gt;&lt;TD&gt;336&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23&lt;/TD&gt;&lt;TD&gt;22&lt;/TD&gt;&lt;TD&gt;16 x 22&lt;/TD&gt;&lt;TD&gt;352&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 27 Jul 2021 18:43:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083186#M43791</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2021-07-27T18:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083199#M43792</link>
      <description>&lt;P&gt;This makes sense! However, in my case, the Julian day begins at 1, not 0. Here's a chart of the conversion; would this mean the subtraction is not necessary?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BeckB_0-1627412085524.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/19452iDE26BD73CCA7BF98/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BeckB_0-1627412085524.png" alt="BeckB_0-1627412085524.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 18:55:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083199#M43792</guid>
      <dc:creator>BeckB</dc:creator>
      <dc:date>2021-07-27T18:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083205#M43793</link>
      <description>&lt;P&gt;Just add 1 at the end of the expression (outside all brackets). Updated my last expression.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 19:09:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083205#M43793</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2021-07-27T19:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083216#M43794</link>
      <description>&lt;P&gt;To clarify, do you mean like this?&lt;/P&gt;&lt;LI-CODE lang="python"&gt;16*((Con(("RASTER" - (RoundDown("RASTER"))== 0.5),RoundUp("RASTER"),RoundUp("RASTER" - 0.5)))-1)+1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 19:11:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083216#M43794</guid>
      <dc:creator>BeckB</dc:creator>
      <dc:date>2021-07-27T19:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083221#M43795</link>
      <description>&lt;P&gt;Yes.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 19:13:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083221#M43795</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2021-07-27T19:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083223#M43796</link>
      <description>&lt;P&gt;Okay, thank you so much!! I really appreciate your help.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 19:16:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083223#M43796</guid>
      <dc:creator>BeckB</dc:creator>
      <dc:date>2021-07-27T19:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Rounding and converting raster values</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083426#M43832</link>
      <description>&lt;P&gt;If your values are all positive, just add 0.5 before truncating.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Int("RASTER" + 0.5)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can then &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/spatial-analyst/reclassify.htm" target="_blank" rel="noopener"&gt;reclassify&lt;/A&gt; the rounded values to whatever you want.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 09:19:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/rounding-and-converting-raster-values/m-p/1083426#M43832</guid>
      <dc:creator>Luke_Pinner</dc:creator>
      <dc:date>2021-07-28T09:19:51Z</dc:date>
    </item>
  </channel>
</rss>

