<?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 'Simple' Floodplain Delineation using only a LiDAR DEM and Stream layer in Water Resources Questions</title>
    <link>https://community.esri.com/t5/water-resources-questions/simple-floodplain-delineation-using-only-a-lidar/m-p/1202972#M4231</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have never used ArcHydro tools before and I am hoping someone can help me with some basic floodplain delineation. I have a LiDAR DEM and a derived stream layer with Z-values. I am hoping to map the floodplain extent from these stream centerlines based on a 3m rise in water levels. Nothing more complicated than that. From what I have read so far, I need to "Flood Out WSE along streams in incremental steps"... But I am not sure what ArcHydro tools to use to do that.&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 15 Aug 2022 17:51:18 GMT</pubDate>
    <dc:creator>splatt_wfp</dc:creator>
    <dc:date>2022-08-15T17:51:18Z</dc:date>
    <item>
      <title>'Simple' Floodplain Delineation using only a LiDAR DEM and Stream layer</title>
      <link>https://community.esri.com/t5/water-resources-questions/simple-floodplain-delineation-using-only-a-lidar/m-p/1202972#M4231</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have never used ArcHydro tools before and I am hoping someone can help me with some basic floodplain delineation. I have a LiDAR DEM and a derived stream layer with Z-values. I am hoping to map the floodplain extent from these stream centerlines based on a 3m rise in water levels. Nothing more complicated than that. From what I have read so far, I need to "Flood Out WSE along streams in incremental steps"... But I am not sure what ArcHydro tools to use to do that.&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 17:51:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/water-resources-questions/simple-floodplain-delineation-using-only-a-lidar/m-p/1202972#M4231</guid>
      <dc:creator>splatt_wfp</dc:creator>
      <dc:date>2022-08-15T17:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: 'Simple' Floodplain Delineation using only a LiDAR DEM and Stream layer</title>
      <link>https://community.esri.com/t5/water-resources-questions/simple-floodplain-delineation-using-only-a-lidar/m-p/1203076#M4234</link>
      <description>&lt;P&gt;Steve,&lt;/P&gt;&lt;P&gt;Depending on the quality of your DEM and streams, this could be an "easy" exercise.&amp;nbsp; If your DEM and the flow direction match the placement and elevation of your streams, then you can directly use the HAND (Height Above Nearest Drainage) approach.&amp;nbsp; You will need the following rasters (I suggest that you use .tif format for your rasters):&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;DEM (i'll call it DEM.tif).&amp;nbsp; Should be in correct horizontal/vertical units - e.g. meters.&lt;/LI&gt;&lt;LI&gt;Flow direction raster derived from the DEM (FDR.tif) that "flows" into your streams.&lt;/LI&gt;&lt;LI&gt;Stream raster (STR.tif).&amp;nbsp; This can have value of 1 where stream cells are and nodata elsewhere.&amp;nbsp; The elevation of the streams (thalweg) should be reflected in the DEM.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The steps are then (these are all core Spatial Analyst functions - you do not need Arc Hydro):&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Use "Flow Distance" (Hydrology toolset) to calculate the HAND (HAND.tif) surface (that is the "output raster".&amp;nbsp; Specify inputs stream raster (STR), surface raster (DEM) and flow direction raster (FDR).&amp;nbsp;Keep all other parameters at their default values.&lt;/LI&gt;&lt;LI&gt;Once you have the HAND surface, to get the depth and extent of flooding for a specific depth (D) in the same vertical units as the DEM, use the simple conditional statement (use CON SA function from “Conditional” toolset) and specify:&lt;OL&gt;&lt;LI&gt;HAND.tif as your conditional raster.&lt;/LI&gt;&lt;LI&gt;Expression as: Value is less than or equal to 3 (D is your flooding depth – in your case it is 3).&lt;/LI&gt;&lt;LI&gt;3 as your true raster (D is your flooding depth – in your case it is 3).&lt;/LI&gt;&lt;LI&gt;Leave false raster entry empty (meaning all values outside of your flood extent will be nodata).&lt;/LI&gt;&lt;LI&gt;Specify output raster (I like to put name of the depth in the output name – e.g. fe3m.tif – for flood extent of 3m, but it can be anything).&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;That’s it.&amp;nbsp; In the output raster, where you have values, area is flooded and where it is nodata, it is “dry”.&amp;nbsp; If you want to calculate depth of flooding for each cell, just use the MINUS function and use fe3m.tif and HAND.tif as inputs (in that order).&lt;/P&gt;&lt;P&gt;Hope this works for you.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 23:18:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/water-resources-questions/simple-floodplain-delineation-using-only-a-lidar/m-p/1203076#M4234</guid>
      <dc:creator>DeanDjokic</dc:creator>
      <dc:date>2022-08-15T23:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: 'Simple' Floodplain Delineation using only a LiDAR DEM and Stream layer</title>
      <link>https://community.esri.com/t5/water-resources-questions/simple-floodplain-delineation-using-only-a-lidar/m-p/1203128#M4235</link>
      <description>&lt;P&gt;That was super easy! Thanks so much.&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 04:15:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/water-resources-questions/simple-floodplain-delineation-using-only-a-lidar/m-p/1203128#M4235</guid>
      <dc:creator>splatt_wfp</dc:creator>
      <dc:date>2022-08-16T04:15:41Z</dc:date>
    </item>
  </channel>
</rss>

