Burning stream network into DEM layer using ArcGIS Desktop? Planned maintenance scheduled...

When the Haste spell ends on a creature, do attackers have advantage against that creature?

Do I really need to have a message in a novel to appeal to readers?

How to convince students of the implication truth values?

old style "caution" boxes

Is there such thing as an Availability Group failover trigger?

Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?

How to tell that you are a giant?

Generate an RGB colour grid

Is safe to use va_start macro with this as parameter?

Is "Reachable Object" really an NP-complete problem?

Delete nth line from bottom

What is the meaning of the new sigil in Game of Thrones Season 8 intro?

How to find all the available tools in mac terminal?

Using audio cues to encourage good posture

Can you use the Shield Master feat to shove someone before you make an attack by using a Readied action?

Fundamental Solution of the Pell Equation

How does the math work when buying airline miles?

What are the out-of-universe reasons for the references to Toby Maguire-era Spider-Man in ITSV

Why are both D and D# fitting into my E minor key?

Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?

How to react to hostile behavior from a senior developer?

If a VARCHAR(MAX) column is included in an index, is the entire value always stored in the index page(s)?

What causes the direction of lightning flashes?

Is CEO the profession with the most psychopaths?



Burning stream network into DEM layer using ArcGIS Desktop?



Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Flow direction generated for river is incorrectCould bridges prevent ArcMap from creating correct watersheds?Burn Elevation Points in DEMDetermining flow amount along stream using ArcGIS Desktop?Burning road network into DEM?DEM Stream BurningPreventing flow accumulation in one watershed from traveling up tributaries into adjacent watersheds?Calculating flowpath length to stream within catchment using ArcGIS Desktop?DEM Reconditioning / Stream Burning with ArcHydroCreating DEM using ArcGIS Desktop?Performing Weighted Flow Accumulation in GRASS?Creating catchments/basins around stream feature class using ArcGIS Desktop?Calculating Distance from Outlet to Dam(s) using ArcGIS Desktop?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







15















I am working on a DEM that in an area where there is little relief.



I would like to 'burn' the river network into the DEM so I can calculate flow accumulation and flow length accurately.



I am using ArcGIS Desktop 10.










share|improve this question




















  • 1





    Do your river network polylines have Z values?

    – Kirk Kuykendall
    Jan 9 '12 at 3:23











  • No they don't have Z values. They from the DNR.

    – Kate
    Jan 9 '12 at 3:27


















15















I am working on a DEM that in an area where there is little relief.



I would like to 'burn' the river network into the DEM so I can calculate flow accumulation and flow length accurately.



I am using ArcGIS Desktop 10.










share|improve this question




















  • 1





    Do your river network polylines have Z values?

    – Kirk Kuykendall
    Jan 9 '12 at 3:23











  • No they don't have Z values. They from the DNR.

    – Kate
    Jan 9 '12 at 3:27














15












15








15


6






I am working on a DEM that in an area where there is little relief.



I would like to 'burn' the river network into the DEM so I can calculate flow accumulation and flow length accurately.



I am using ArcGIS Desktop 10.










share|improve this question
















I am working on a DEM that in an area where there is little relief.



I would like to 'burn' the river network into the DEM so I can calculate flow accumulation and flow length accurately.



I am using ArcGIS Desktop 10.







arcgis-desktop arcgis-10.0 dem rasterization hydrography






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 13 '15 at 22:10









PolyGeo

54k1782246




54k1782246










asked Jan 9 '12 at 0:14









KateKate

76113




76113








  • 1





    Do your river network polylines have Z values?

    – Kirk Kuykendall
    Jan 9 '12 at 3:23











  • No they don't have Z values. They from the DNR.

    – Kate
    Jan 9 '12 at 3:27














  • 1





    Do your river network polylines have Z values?

    – Kirk Kuykendall
    Jan 9 '12 at 3:23











  • No they don't have Z values. They from the DNR.

    – Kate
    Jan 9 '12 at 3:27








1




1





Do your river network polylines have Z values?

– Kirk Kuykendall
Jan 9 '12 at 3:23





Do your river network polylines have Z values?

– Kirk Kuykendall
Jan 9 '12 at 3:23













No they don't have Z values. They from the DNR.

– Kate
Jan 9 '12 at 3:27





No they don't have Z values. They from the DNR.

– Kate
Jan 9 '12 at 3:27










7 Answers
7






active

oldest

votes


















19














Convert your stream vectors to raster with a value of 1 and the same extent and cellsize as your DEM. In the Raster Calculator use a map algebra expression something along the lines of:



Con("rivers"==1, "DEM" - 1, "DEM")


If you want to burn in the streams more than 1 elevation unit, change "DEM" - 1 to "DEM" - a bigger value.



To implement the Whitebox GAT decay coefficient algorithm (Z = E - (G / (G + D))^k * H) from @elrobis answer in the ArcGIS 10 raster calculator, use something like:



"DEM" - Power (G / (G + EucDistance("rivers_raster") ), k ) * H



Replace G with your cellsize, k with a value >0 (decay coefficient) and H with the maximum amount to lower your DEM by., e.g:



"DEM" - Power (30 / (30 + EucDistance("rivers_raster") ), 2 ) * 5






share|improve this answer

































    11














    Whitebox GAT (open-source hydrology and remote sensing package) has a method by this name in its Hydrology utilities. Whitebox is unique in that it exposes the source code and algorithms used by the analysis via the UI (note the View Code button). Even if you intend to isolate your procedures to ArcGIS, there may be some benefits to experimenting with another flavor.



    enter image description here






    share|improve this answer































      2














      ArcHydro has many DEM processing tools, one being Stream burning using the AGREE methodology. I've used it several times. It's an extension to ArcMap and is fairly comprehensive.






      share|improve this answer































        1














        You could use your existing DEM to create height points and/or contours, then use the Topo to Raster tool to re-create a hydrologically correct DEM including your water network. I'm not 100% certain how different the resultant surface would be from your original DEM, though you can be sure it'll work for creating stream networks, if exact height measures aren't vital. The Topo to Raster tool also allows for other hydrologically significant features such as water bodies and known sinks.



        It requires the Spatial Analyst extension, though I'm assuming you have that if you're looking at flow accumulation & length in the first place.



        I haven't tried this myself and don't have data handy to whip up a test right now, but I can't see a reason why it wouldn't work.






        share|improve this answer































          1














          For Arcgis, Luke's answer seems perfect, but as it's mentionned WhiteBox GAT in another answer, i can't help adding some additionnal info on other "flavors" in case it could help.



          SAGA-GIS (free) has some interesting preprocessing features - one of them can answer your question : http://www.saga-gis.org/saga_tool_doc/2.1.3/ta_preprocessor_6.html



          You will need a raster DEM and your river network in a raster format (Shapes to Grid should accomplish that - anything else should be nodata)




          Module Burn Stream Network into DEM



          Burns a stream network into a
          Digital Elevation Model (DEM). Stream cells have to be coded with
          valid data values, all other cells should be set to no data value.
          First two methods decrease . The third method ensures a steady
          downstream gradient. An elevation decrease is only applied, if a
          downstream cell is equally high or higher. You should provide a grid
          with flow directions for determination of downstream cells. The 'Sink
          Drainage Route Detection' module offers such flow directions.



          Author: O.Conrad (c) 2011



          Specification: grid



          Menu: Terrain Analysis|Preprocessing







          share|improve this answer

































            0














            Check out the MAPC (MAPC.org) toolbox here



            One of the tools creates a "Burn Raster" from vector lines and DEM






            share|improve this answer































              0














              enter image description here



              i try to make Flow Accumulation in ArcGIs by using Geo-HMS, my stream picture was different from my Flow Accumulation pic.





              share








              New contributor




              Yogi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.





















                Your Answer








                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "79"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: false,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: null,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f18595%2fburning-stream-network-into-dem-layer-using-arcgis-desktop%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                7 Answers
                7






                active

                oldest

                votes








                7 Answers
                7






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                19














                Convert your stream vectors to raster with a value of 1 and the same extent and cellsize as your DEM. In the Raster Calculator use a map algebra expression something along the lines of:



                Con("rivers"==1, "DEM" - 1, "DEM")


                If you want to burn in the streams more than 1 elevation unit, change "DEM" - 1 to "DEM" - a bigger value.



                To implement the Whitebox GAT decay coefficient algorithm (Z = E - (G / (G + D))^k * H) from @elrobis answer in the ArcGIS 10 raster calculator, use something like:



                "DEM" - Power (G / (G + EucDistance("rivers_raster") ), k ) * H



                Replace G with your cellsize, k with a value >0 (decay coefficient) and H with the maximum amount to lower your DEM by., e.g:



                "DEM" - Power (30 / (30 + EucDistance("rivers_raster") ), 2 ) * 5






                share|improve this answer






























                  19














                  Convert your stream vectors to raster with a value of 1 and the same extent and cellsize as your DEM. In the Raster Calculator use a map algebra expression something along the lines of:



                  Con("rivers"==1, "DEM" - 1, "DEM")


                  If you want to burn in the streams more than 1 elevation unit, change "DEM" - 1 to "DEM" - a bigger value.



                  To implement the Whitebox GAT decay coefficient algorithm (Z = E - (G / (G + D))^k * H) from @elrobis answer in the ArcGIS 10 raster calculator, use something like:



                  "DEM" - Power (G / (G + EucDistance("rivers_raster") ), k ) * H



                  Replace G with your cellsize, k with a value >0 (decay coefficient) and H with the maximum amount to lower your DEM by., e.g:



                  "DEM" - Power (30 / (30 + EucDistance("rivers_raster") ), 2 ) * 5






                  share|improve this answer




























                    19












                    19








                    19







                    Convert your stream vectors to raster with a value of 1 and the same extent and cellsize as your DEM. In the Raster Calculator use a map algebra expression something along the lines of:



                    Con("rivers"==1, "DEM" - 1, "DEM")


                    If you want to burn in the streams more than 1 elevation unit, change "DEM" - 1 to "DEM" - a bigger value.



                    To implement the Whitebox GAT decay coefficient algorithm (Z = E - (G / (G + D))^k * H) from @elrobis answer in the ArcGIS 10 raster calculator, use something like:



                    "DEM" - Power (G / (G + EucDistance("rivers_raster") ), k ) * H



                    Replace G with your cellsize, k with a value >0 (decay coefficient) and H with the maximum amount to lower your DEM by., e.g:



                    "DEM" - Power (30 / (30 + EucDistance("rivers_raster") ), 2 ) * 5






                    share|improve this answer















                    Convert your stream vectors to raster with a value of 1 and the same extent and cellsize as your DEM. In the Raster Calculator use a map algebra expression something along the lines of:



                    Con("rivers"==1, "DEM" - 1, "DEM")


                    If you want to burn in the streams more than 1 elevation unit, change "DEM" - 1 to "DEM" - a bigger value.



                    To implement the Whitebox GAT decay coefficient algorithm (Z = E - (G / (G + D))^k * H) from @elrobis answer in the ArcGIS 10 raster calculator, use something like:



                    "DEM" - Power (G / (G + EucDistance("rivers_raster") ), k ) * H



                    Replace G with your cellsize, k with a value >0 (decay coefficient) and H with the maximum amount to lower your DEM by., e.g:



                    "DEM" - Power (30 / (30 + EucDistance("rivers_raster") ), 2 ) * 5







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Jan 9 '12 at 4:42

























                    answered Jan 9 '12 at 1:10









                    user2856user2856

                    31.1k258107




                    31.1k258107

























                        11














                        Whitebox GAT (open-source hydrology and remote sensing package) has a method by this name in its Hydrology utilities. Whitebox is unique in that it exposes the source code and algorithms used by the analysis via the UI (note the View Code button). Even if you intend to isolate your procedures to ArcGIS, there may be some benefits to experimenting with another flavor.



                        enter image description here






                        share|improve this answer




























                          11














                          Whitebox GAT (open-source hydrology and remote sensing package) has a method by this name in its Hydrology utilities. Whitebox is unique in that it exposes the source code and algorithms used by the analysis via the UI (note the View Code button). Even if you intend to isolate your procedures to ArcGIS, there may be some benefits to experimenting with another flavor.



                          enter image description here






                          share|improve this answer


























                            11












                            11








                            11







                            Whitebox GAT (open-source hydrology and remote sensing package) has a method by this name in its Hydrology utilities. Whitebox is unique in that it exposes the source code and algorithms used by the analysis via the UI (note the View Code button). Even if you intend to isolate your procedures to ArcGIS, there may be some benefits to experimenting with another flavor.



                            enter image description here






                            share|improve this answer













                            Whitebox GAT (open-source hydrology and remote sensing package) has a method by this name in its Hydrology utilities. Whitebox is unique in that it exposes the source code and algorithms used by the analysis via the UI (note the View Code button). Even if you intend to isolate your procedures to ArcGIS, there may be some benefits to experimenting with another flavor.



                            enter image description here







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jan 9 '12 at 1:44









                            elrobiselrobis

                            4,6842044




                            4,6842044























                                2














                                ArcHydro has many DEM processing tools, one being Stream burning using the AGREE methodology. I've used it several times. It's an extension to ArcMap and is fairly comprehensive.






                                share|improve this answer




























                                  2














                                  ArcHydro has many DEM processing tools, one being Stream burning using the AGREE methodology. I've used it several times. It's an extension to ArcMap and is fairly comprehensive.






                                  share|improve this answer


























                                    2












                                    2








                                    2







                                    ArcHydro has many DEM processing tools, one being Stream burning using the AGREE methodology. I've used it several times. It's an extension to ArcMap and is fairly comprehensive.






                                    share|improve this answer













                                    ArcHydro has many DEM processing tools, one being Stream burning using the AGREE methodology. I've used it several times. It's an extension to ArcMap and is fairly comprehensive.







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Jan 9 '12 at 21:32









                                    HornbyddHornbydd

                                    27.2k32958




                                    27.2k32958























                                        1














                                        You could use your existing DEM to create height points and/or contours, then use the Topo to Raster tool to re-create a hydrologically correct DEM including your water network. I'm not 100% certain how different the resultant surface would be from your original DEM, though you can be sure it'll work for creating stream networks, if exact height measures aren't vital. The Topo to Raster tool also allows for other hydrologically significant features such as water bodies and known sinks.



                                        It requires the Spatial Analyst extension, though I'm assuming you have that if you're looking at flow accumulation & length in the first place.



                                        I haven't tried this myself and don't have data handy to whip up a test right now, but I can't see a reason why it wouldn't work.






                                        share|improve this answer




























                                          1














                                          You could use your existing DEM to create height points and/or contours, then use the Topo to Raster tool to re-create a hydrologically correct DEM including your water network. I'm not 100% certain how different the resultant surface would be from your original DEM, though you can be sure it'll work for creating stream networks, if exact height measures aren't vital. The Topo to Raster tool also allows for other hydrologically significant features such as water bodies and known sinks.



                                          It requires the Spatial Analyst extension, though I'm assuming you have that if you're looking at flow accumulation & length in the first place.



                                          I haven't tried this myself and don't have data handy to whip up a test right now, but I can't see a reason why it wouldn't work.






                                          share|improve this answer


























                                            1












                                            1








                                            1







                                            You could use your existing DEM to create height points and/or contours, then use the Topo to Raster tool to re-create a hydrologically correct DEM including your water network. I'm not 100% certain how different the resultant surface would be from your original DEM, though you can be sure it'll work for creating stream networks, if exact height measures aren't vital. The Topo to Raster tool also allows for other hydrologically significant features such as water bodies and known sinks.



                                            It requires the Spatial Analyst extension, though I'm assuming you have that if you're looking at flow accumulation & length in the first place.



                                            I haven't tried this myself and don't have data handy to whip up a test right now, but I can't see a reason why it wouldn't work.






                                            share|improve this answer













                                            You could use your existing DEM to create height points and/or contours, then use the Topo to Raster tool to re-create a hydrologically correct DEM including your water network. I'm not 100% certain how different the resultant surface would be from your original DEM, though you can be sure it'll work for creating stream networks, if exact height measures aren't vital. The Topo to Raster tool also allows for other hydrologically significant features such as water bodies and known sinks.



                                            It requires the Spatial Analyst extension, though I'm assuming you have that if you're looking at flow accumulation & length in the first place.



                                            I haven't tried this myself and don't have data handy to whip up a test right now, but I can't see a reason why it wouldn't work.







                                            share|improve this answer












                                            share|improve this answer



                                            share|improve this answer










                                            answered Jan 10 '12 at 1:58









                                            ThomMThomM

                                            1557




                                            1557























                                                1














                                                For Arcgis, Luke's answer seems perfect, but as it's mentionned WhiteBox GAT in another answer, i can't help adding some additionnal info on other "flavors" in case it could help.



                                                SAGA-GIS (free) has some interesting preprocessing features - one of them can answer your question : http://www.saga-gis.org/saga_tool_doc/2.1.3/ta_preprocessor_6.html



                                                You will need a raster DEM and your river network in a raster format (Shapes to Grid should accomplish that - anything else should be nodata)




                                                Module Burn Stream Network into DEM



                                                Burns a stream network into a
                                                Digital Elevation Model (DEM). Stream cells have to be coded with
                                                valid data values, all other cells should be set to no data value.
                                                First two methods decrease . The third method ensures a steady
                                                downstream gradient. An elevation decrease is only applied, if a
                                                downstream cell is equally high or higher. You should provide a grid
                                                with flow directions for determination of downstream cells. The 'Sink
                                                Drainage Route Detection' module offers such flow directions.



                                                Author: O.Conrad (c) 2011



                                                Specification: grid



                                                Menu: Terrain Analysis|Preprocessing







                                                share|improve this answer






























                                                  1














                                                  For Arcgis, Luke's answer seems perfect, but as it's mentionned WhiteBox GAT in another answer, i can't help adding some additionnal info on other "flavors" in case it could help.



                                                  SAGA-GIS (free) has some interesting preprocessing features - one of them can answer your question : http://www.saga-gis.org/saga_tool_doc/2.1.3/ta_preprocessor_6.html



                                                  You will need a raster DEM and your river network in a raster format (Shapes to Grid should accomplish that - anything else should be nodata)




                                                  Module Burn Stream Network into DEM



                                                  Burns a stream network into a
                                                  Digital Elevation Model (DEM). Stream cells have to be coded with
                                                  valid data values, all other cells should be set to no data value.
                                                  First two methods decrease . The third method ensures a steady
                                                  downstream gradient. An elevation decrease is only applied, if a
                                                  downstream cell is equally high or higher. You should provide a grid
                                                  with flow directions for determination of downstream cells. The 'Sink
                                                  Drainage Route Detection' module offers such flow directions.



                                                  Author: O.Conrad (c) 2011



                                                  Specification: grid



                                                  Menu: Terrain Analysis|Preprocessing







                                                  share|improve this answer




























                                                    1












                                                    1








                                                    1







                                                    For Arcgis, Luke's answer seems perfect, but as it's mentionned WhiteBox GAT in another answer, i can't help adding some additionnal info on other "flavors" in case it could help.



                                                    SAGA-GIS (free) has some interesting preprocessing features - one of them can answer your question : http://www.saga-gis.org/saga_tool_doc/2.1.3/ta_preprocessor_6.html



                                                    You will need a raster DEM and your river network in a raster format (Shapes to Grid should accomplish that - anything else should be nodata)




                                                    Module Burn Stream Network into DEM



                                                    Burns a stream network into a
                                                    Digital Elevation Model (DEM). Stream cells have to be coded with
                                                    valid data values, all other cells should be set to no data value.
                                                    First two methods decrease . The third method ensures a steady
                                                    downstream gradient. An elevation decrease is only applied, if a
                                                    downstream cell is equally high or higher. You should provide a grid
                                                    with flow directions for determination of downstream cells. The 'Sink
                                                    Drainage Route Detection' module offers such flow directions.



                                                    Author: O.Conrad (c) 2011



                                                    Specification: grid



                                                    Menu: Terrain Analysis|Preprocessing







                                                    share|improve this answer















                                                    For Arcgis, Luke's answer seems perfect, but as it's mentionned WhiteBox GAT in another answer, i can't help adding some additionnal info on other "flavors" in case it could help.



                                                    SAGA-GIS (free) has some interesting preprocessing features - one of them can answer your question : http://www.saga-gis.org/saga_tool_doc/2.1.3/ta_preprocessor_6.html



                                                    You will need a raster DEM and your river network in a raster format (Shapes to Grid should accomplish that - anything else should be nodata)




                                                    Module Burn Stream Network into DEM



                                                    Burns a stream network into a
                                                    Digital Elevation Model (DEM). Stream cells have to be coded with
                                                    valid data values, all other cells should be set to no data value.
                                                    First two methods decrease . The third method ensures a steady
                                                    downstream gradient. An elevation decrease is only applied, if a
                                                    downstream cell is equally high or higher. You should provide a grid
                                                    with flow directions for determination of downstream cells. The 'Sink
                                                    Drainage Route Detection' module offers such flow directions.



                                                    Author: O.Conrad (c) 2011



                                                    Specification: grid



                                                    Menu: Terrain Analysis|Preprocessing








                                                    share|improve this answer














                                                    share|improve this answer



                                                    share|improve this answer








                                                    edited May 2 '18 at 16:14

























                                                    answered May 2 '18 at 13:15









                                                    gisnsidegisnside

                                                    5,7001654




                                                    5,7001654























                                                        0














                                                        Check out the MAPC (MAPC.org) toolbox here



                                                        One of the tools creates a "Burn Raster" from vector lines and DEM






                                                        share|improve this answer




























                                                          0














                                                          Check out the MAPC (MAPC.org) toolbox here



                                                          One of the tools creates a "Burn Raster" from vector lines and DEM






                                                          share|improve this answer


























                                                            0












                                                            0








                                                            0







                                                            Check out the MAPC (MAPC.org) toolbox here



                                                            One of the tools creates a "Burn Raster" from vector lines and DEM






                                                            share|improve this answer













                                                            Check out the MAPC (MAPC.org) toolbox here



                                                            One of the tools creates a "Burn Raster" from vector lines and DEM







                                                            share|improve this answer












                                                            share|improve this answer



                                                            share|improve this answer










                                                            answered May 2 '18 at 20:25









                                                            Zipper1365Zipper1365

                                                            523313




                                                            523313























                                                                0














                                                                enter image description here



                                                                i try to make Flow Accumulation in ArcGIs by using Geo-HMS, my stream picture was different from my Flow Accumulation pic.





                                                                share








                                                                New contributor




                                                                Yogi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                Check out our Code of Conduct.

























                                                                  0














                                                                  enter image description here



                                                                  i try to make Flow Accumulation in ArcGIs by using Geo-HMS, my stream picture was different from my Flow Accumulation pic.





                                                                  share








                                                                  New contributor




                                                                  Yogi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                  Check out our Code of Conduct.























                                                                    0












                                                                    0








                                                                    0







                                                                    enter image description here



                                                                    i try to make Flow Accumulation in ArcGIs by using Geo-HMS, my stream picture was different from my Flow Accumulation pic.





                                                                    share








                                                                    New contributor




                                                                    Yogi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                    Check out our Code of Conduct.










                                                                    enter image description here



                                                                    i try to make Flow Accumulation in ArcGIs by using Geo-HMS, my stream picture was different from my Flow Accumulation pic.






                                                                    share








                                                                    New contributor




                                                                    Yogi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                    Check out our Code of Conduct.








                                                                    share


                                                                    share






                                                                    New contributor




                                                                    Yogi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                    Check out our Code of Conduct.









                                                                    answered 5 mins ago









                                                                    YogiYogi

                                                                    1




                                                                    1




                                                                    New contributor




                                                                    Yogi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                    Check out our Code of Conduct.





                                                                    New contributor





                                                                    Yogi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                    Check out our Code of Conduct.






                                                                    Yogi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                    Check out our Code of Conduct.






























                                                                        draft saved

                                                                        draft discarded




















































                                                                        Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


                                                                        • Please be sure to answer the question. Provide details and share your research!

                                                                        But avoid



                                                                        • Asking for help, clarification, or responding to other answers.

                                                                        • Making statements based on opinion; back them up with references or personal experience.


                                                                        To learn more, see our tips on writing great answers.




                                                                        draft saved


                                                                        draft discarded














                                                                        StackExchange.ready(
                                                                        function () {
                                                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f18595%2fburning-stream-network-into-dem-layer-using-arcgis-desktop%23new-answer', 'question_page');
                                                                        }
                                                                        );

                                                                        Post as a guest















                                                                        Required, but never shown





















































                                                                        Required, but never shown














                                                                        Required, but never shown












                                                                        Required, but never shown







                                                                        Required, but never shown

































                                                                        Required, but never shown














                                                                        Required, but never shown












                                                                        Required, but never shown







                                                                        Required, but never shown







                                                                        Popular posts from this blog

                                                                        Щит и меч (фильм) Содержание Названия серий | Сюжет |...

                                                                        is 'sed' thread safeWhat should someone know about using Python scripts in the shell?Nexenta bash script uses...

                                                                        Meter-Bus Содержание Параметры шины | Стандартизация |...