<?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: Generate Flood Planning Layer in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328245#M4607</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps if one would have a raster representing this flood depth raster graduating&amp;nbsp;between the two elevation values.&amp;nbsp;&amp;nbsp;This would require changing the code and not validate against a single height value but against the flood&amp;nbsp;depth raster. Not sure how complex that might be...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Aug 2018 13:49:12 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2018-08-01T13:49:12Z</dc:date>
    <item>
      <title>Generate Flood Planning Layer</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328239#M4601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have several flood depth rasters (floating point) from different flood studies and a dem (floating point).&lt;/P&gt;&lt;P&gt;The idea is to&amp;nbsp;generate a flood planning layer (flood depth raster + 0.5m) using the flood depth rasters and a dem (floating point).&lt;/P&gt;&lt;P&gt;In raster calculator I did "Con("flood_depth_raster","dem")" which gave me the extent of the flood depth raster with the dem values.&lt;/P&gt;&lt;P&gt;Does anyone know a way to add 0.5m to this and fit to the dem?&lt;/P&gt;&lt;P&gt;Then i will create a flood planning level polygon from the raster to use in the gis in further analysis.&lt;/P&gt;&lt;P&gt;Thanks, John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 04:18:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328239#M4601</guid>
      <dc:creator>JohnSpry1</dc:creator>
      <dc:date>2018-07-31T04:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Flood Planning Layer</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328240#M4602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What you are saying here with this statement :&lt;/P&gt;&lt;P&gt;&lt;EM style="background-color: #ffffff;"&gt;"Con("flood_depth_raster","dem")"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Is something like IF (flood_depth_raster is not null or empty, then return the dem raster, there is no else returned).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;This would be more properly stated as something like :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Con(IsNull(flood_depth_raster), flood_depth_raster, dem)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;I think you can just add the 0.5m to the output like :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Con(IsNull(flood_depth_raster), flood_depth_raster, dem + 0.5)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 09:24:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328240#M4602</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2018-07-31T09:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Flood Planning Layer</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328241#M4603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Neil, apologies for not giving a better description of my overall problem.&lt;/P&gt;&lt;P&gt;Your answer is helpful&amp;nbsp;and adds 0.5m to the vertical depth but I am also trying to stretch the flood_depth_raster horizontally to the dem so the extent expands as well.&lt;/P&gt;&lt;P&gt;Ultimately&amp;nbsp;I will create an&amp;nbsp;extent polygon from the new raster.&lt;/P&gt;&lt;P&gt;Any further ideas would be much appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2018 01:49:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328241#M4603</guid>
      <dc:creator>JohnSpry1</dc:creator>
      <dc:date>2018-08-01T01:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Flood Planning Layer</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328242#M4604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3100"&gt;Xander Bakker&lt;/A&gt;‌ translated Bill Huber's original 2001 post which has been widely to simulate a flood.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this link and Xander's python code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/84057"&gt;https://community.esri.com/thread/84057&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2018 02:36:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328242#M4604</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-08-01T02:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Flood Planning Layer</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328243#M4605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the link Dan, I am looking at the script trying to figure out if it will work for my task.&lt;/P&gt;&lt;P&gt;Question:&lt;/P&gt;&lt;P&gt;In the python script under settings the line "&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;nSourceElevation&amp;nbsp;=&amp;nbsp;100&amp;nbsp;#&amp;nbsp;The&amp;nbsp;elevation&amp;nbsp;corresponding&amp;nbsp;to&amp;nbsp;the&amp;nbsp;source&amp;nbsp;body" seems to use a static height?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;What figure would could I use when t&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;he flood_depth_raster I have has a range of 0.6 - 50.2 AHD as you travel up the catchment?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2018 04:26:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328243#M4605</guid>
      <dc:creator>JohnSpry1</dc:creator>
      <dc:date>2018-08-01T04:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Flood Planning Layer</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328244#M4606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;If memory serves... It is the elevation of the water surface at a location (say a lake or reservoir).&lt;/P&gt;&lt;P&gt;As you add a vertical increment increment of water to that location, it would obviously have a greater extent than at the start.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The cost distance portion effectively allows you to locate that new elevation in the surrounding terrain effectively.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Other portions of the algorithm deal with the boundary conditions etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2018 06:53:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328244#M4606</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-08-01T06:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Flood Planning Layer</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328245#M4607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps if one would have a raster representing this flood depth raster graduating&amp;nbsp;between the two elevation values.&amp;nbsp;&amp;nbsp;This would require changing the code and not validate against a single height value but against the flood&amp;nbsp;depth raster. Not sure how complex that might be...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2018 13:49:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328245#M4607</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2018-08-01T13:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Flood Planning Layer</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328246#M4608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Xander, thanks for your thoughts&lt;/P&gt;&lt;P&gt;I ran the script and had a look at the outputs seem to simulate a bathtub type flood level rise. Not sure if or how the script could be changed to utilise the flood_depth_raster.&lt;/P&gt;&lt;P&gt;Now I'm&amp;nbsp;thinking, take the polyline from the flood_depth_raster extent &amp;gt; densify it with vertices every 1m &amp;gt; create raster from polyline with cell values from dem &amp;gt; from this point I am looking at this link on focal statistics &lt;A class="link-titled" href="https://support.esri.com/en/technical-article/000004792" title="https://support.esri.com/en/technical-article/000004792"&gt;How To: Remove and replace no data values within a raster using statistical information from the surrounding data values&lt;/A&gt;&amp;nbsp;as a way of expanding the flood_depth_raster with values from the dem that&amp;nbsp;are within 0.5m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2018 23:59:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328246#M4608</guid>
      <dc:creator>JohnSpry1</dc:creator>
      <dc:date>2018-08-01T23:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Flood Planning Layer</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328247#M4609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes it is the bathtub flood.&amp;nbsp; As for flooding along a stream, ArcHydro seems to be the goto.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Although I do recollect some attempt to replicate a water level rise along the stream itself, (assuming uniformity along the length).&amp;nbsp; I can't find a bookmark, but I recollect a protracted discussion before it dissipated without resolution if memory serves.&amp;nbsp; Xander??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2018 00:50:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/generate-flood-planning-layer/m-p/328247#M4609</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-08-02T00:50:42Z</dc:date>
    </item>
  </channel>
</rss>

