<?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: Filling voids in DEM in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88077#M1217</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For small areas with NoData I would go for the solution provided by&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/62883"&gt;Jayanta Poddar&lt;/A&gt;&amp;nbsp; (but&amp;nbsp;using the two steps in a single raster calculator expression). For larger areas in the past I have used&amp;nbsp;a procedure to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;detect the NoData Areas&lt;/LI&gt;&lt;LI&gt;expand the NoData Areas&lt;/LI&gt;&lt;LI&gt;use the expanded raster to get the border with values of the DEM&lt;/LI&gt;&lt;LI&gt;convert that raster into points&lt;/LI&gt;&lt;LI&gt;create a TIN&lt;/LI&gt;&lt;LI&gt;convert to raster and&amp;nbsp;replace the NoData values with the TIN 2 raster result&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, these are a lot of steps and what is most important, if you have a large area of NoData values, you probably&amp;nbsp;don't know what&amp;nbsp;happens there and any method will assume things that may not be true.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 14 Aug 2016 03:55:01 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2016-08-14T03:55:01Z</dc:date>
    <item>
      <title>Filling voids in DEM</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88072#M1212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I recently downloaded a DEM and it has several voids in it. There is not a pixel where there should be. Is there a way I can fill these with reasonable data using arc maps 10.3?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 21:35:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88072#M1212</guid>
      <dc:creator>andylohmann</dc:creator>
      <dc:date>2016-06-16T21:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Filling voids in DEM</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88073#M1213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/generalization-of-classified-raster-imagery.htm"&gt;this help page&lt;/A&gt; that shows how to use &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/nibble.htm"&gt;Nibble &lt;/A&gt;to fill voids.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 21:41:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88073#M1213</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2016-06-16T21:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: Filling voids in DEM</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88074#M1214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope this method will also work:&lt;/P&gt;&lt;P&gt;First, use &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/focal-statistics.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/focal-statistics.htm"&gt;Focal Statistics—Help | ArcGIS for Desktop&lt;/A&gt; using the above DEM to create an interpolated raster. This raster will also have the NoData values filled.&lt;/P&gt;&lt;P&gt;Next, use &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/raster-calculator.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-analyst-toolbox/raster-calculator.htm"&gt;Raster Calculator—Help | ArcGIS for Desktop&lt;/A&gt; with the following expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Con(IsNull("DEMRASTER"),"FOCALRASTER", "DEMRASTER")&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above expression will replace all the NoData values of DEM with the pixel values of the Focal-Statistics Output Raster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 07:27:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88074#M1214</guid>
      <dc:creator>JayantaPoddar</dc:creator>
      <dc:date>2016-06-17T07:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Filling voids in DEM</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88075#M1215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for pixel sized holes normally (depends on window used)... for larger holes, the regiongroup, nibble combination is the way to go&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 07:59:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88075#M1215</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-06-17T07:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: Filling voids in DEM</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88076#M1216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Fill (Spatial Analyst) GP tool may be worth a look as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 22:18:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88076#M1216</guid>
      <dc:creator>Robert_LeClair</dc:creator>
      <dc:date>2016-06-20T22:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Filling voids in DEM</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88077#M1217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For small areas with NoData I would go for the solution provided by&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/62883"&gt;Jayanta Poddar&lt;/A&gt;&amp;nbsp; (but&amp;nbsp;using the two steps in a single raster calculator expression). For larger areas in the past I have used&amp;nbsp;a procedure to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;detect the NoData Areas&lt;/LI&gt;&lt;LI&gt;expand the NoData Areas&lt;/LI&gt;&lt;LI&gt;use the expanded raster to get the border with values of the DEM&lt;/LI&gt;&lt;LI&gt;convert that raster into points&lt;/LI&gt;&lt;LI&gt;create a TIN&lt;/LI&gt;&lt;LI&gt;convert to raster and&amp;nbsp;replace the NoData values with the TIN 2 raster result&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, these are a lot of steps and what is most important, if you have a large area of NoData values, you probably&amp;nbsp;don't know what&amp;nbsp;happens there and any method will assume things that may not be true.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Aug 2016 03:55:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/filling-voids-in-dem/m-p/88077#M1217</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2016-08-14T03:55:01Z</dc:date>
    </item>
  </channel>
</rss>

