<?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: Combining Rasters question in AEC (Architecture, Engineering and Construction) Questions</title>
    <link>https://community.esri.com/t5/aec-architecture-engineering-and-construction/combining-rasters-question/m-p/168784#M108</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might be able to combine them together with the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/raster-calculator.htm"&gt;Raster Calculator in ArcGIS Pro&lt;/A&gt;. [raster1 + raster2 = raster3] It helps that one raster has a value of zero, then it won't change the cells that have a 1 or 2 from the other raster once they are combined. Here is a&lt;A href="https://www.youtube.com/watch?v=zGycA0r4mhc"&gt; video that explains it&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Oct 2019 14:13:57 GMT</pubDate>
    <dc:creator>David</dc:creator>
    <dc:date>2019-10-10T14:13:57Z</dc:date>
    <item>
      <title>Combining Rasters question</title>
      <link>https://community.esri.com/t5/aec-architecture-engineering-and-construction/combining-rasters-question/m-p/168782#M106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In ArcGIS Pro I have two rasters; one is a single value (0) rectangle, one is line based with 2 values (1 and 2).&amp;nbsp; I need to combine them into one raster with all three values.&amp;nbsp; The rectangle represents off-road values and the line based raster represents two types of roads.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any pointers would be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2019 23:23:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/aec-architecture-engineering-and-construction/combining-rasters-question/m-p/168782#M106</guid>
      <dc:creator>KatePope</dc:creator>
      <dc:date>2019-10-09T23:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Rasters question</title>
      <link>https://community.esri.com/t5/aec-architecture-engineering-and-construction/combining-rasters-question/m-p/168783#M107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;usually&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/conditional-evaluation-with-con.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/conditional-evaluation-with-con.htm"&gt;Conditional evaluation with Con—Help | ArcGIS Desktop&lt;/A&gt; and perhaps&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/h-changing-nodata-cells-to-a-value.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/h-changing-nodata-cells-to-a-value.htm"&gt;How to change NoData cells to a value—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;assume you have 'roads' and 'nonroad'.&amp;nbsp; assume that your 'roads' either have a value for the road type surrounded by no data... you could use&lt;/P&gt;&lt;P&gt;Con(IsNull('roads'), 'nonroad', 'road') &amp;nbsp; Do check the exact syntax, but in essence, you want to put/place the nonroad values into the nodata areas of the road raster.&lt;/P&gt;&lt;P&gt;There are other ways, but you should be aware of a few things.&lt;/P&gt;&lt;P&gt;If your rasters both have classes 1, 2, 3... then the above will really foul things up, unless you produce a unique classification scheme...&lt;/P&gt;&lt;P&gt;Perhaps add 10 to the 'road' classes to reclass them to 11, 12 and 13&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Con(IsNull('roads'), 'nonroad', 'road' + 10)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;You will end up with 1, 2, 3 and 11, 12, 13, representing all the classes in both rasters.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Other approaches are possible, but the above is food for thought.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2019 02:52:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/aec-architecture-engineering-and-construction/combining-rasters-question/m-p/168783#M107</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2019-10-10T02:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Rasters question</title>
      <link>https://community.esri.com/t5/aec-architecture-engineering-and-construction/combining-rasters-question/m-p/168784#M108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might be able to combine them together with the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/raster-calculator.htm"&gt;Raster Calculator in ArcGIS Pro&lt;/A&gt;. [raster1 + raster2 = raster3] It helps that one raster has a value of zero, then it won't change the cells that have a 1 or 2 from the other raster once they are combined. Here is a&lt;A href="https://www.youtube.com/watch?v=zGycA0r4mhc"&gt; video that explains it&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2019 14:13:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/aec-architecture-engineering-and-construction/combining-rasters-question/m-p/168784#M108</guid>
      <dc:creator>David</dc:creator>
      <dc:date>2019-10-10T14:13:57Z</dc:date>
    </item>
  </channel>
</rss>

