<?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: Sink results in very different demarkations? in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675081#M9832</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suspect it is the aggregation step&lt;/P&gt;&lt;P&gt;what affect do you think that has on the output given your parameters&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/how-aggregate-works.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/how-aggregate-works.htm"&gt;How Aggregate works—Help | Documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The change in cell size seems to be the issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Apr 2020 11:24:08 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2020-04-08T11:24:08Z</dc:date>
    <item>
      <title>Sink results in very different demarkations?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675076#M9827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sink results in very different demarkations depending on the resampling of the raster data. Could someone explain why? I don't understand this?&lt;/P&gt;&lt;P&gt;In the attached images you could see the differences. I use elevation data with a resolution of 5 meters. Sink06m ... is in my opinion better because nearly all lakes are demarked as sinks. Sink06m is resampled to a cellsize of 6m biliniear. Sink10m is resampled to a cellsize 10 meters, but the results are totally different?&lt;/P&gt;&lt;P&gt;Am I doing something wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is how I calculated the areas:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; os
&lt;SPAN class="keyword token"&gt;from&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;sa &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;overwriteOutput &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token boolean"&gt;True&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;env&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;workspace &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"MyPath\DGM.gdb"&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Local variables:&lt;/SPAN&gt;
DGM005_tif &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;"MyPath\DGM005_3.tif"&lt;/SPAN&gt;
Fill_tif1 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Fill_1"&lt;/SPAN&gt;
resample &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"resample"&lt;/SPAN&gt;
FlowDir_Fill2 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"FlowDir_1"&lt;/SPAN&gt;
Sink_FlowDir1 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Sink_FlowDir1"&lt;/SPAN&gt;
absenkung &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Absenkung"&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CheckOutExtension&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Spatial"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

outCon2 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Con&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Raster&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;DGM005_tif&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; DGM005_tif&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Process: Füllung&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;gp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Fill_sa&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;outCon2&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; Fill_tif1&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"fill"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Resample_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Fill_tif1&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; resample&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"8"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"BILINEAR"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"resample"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Process: Fließrichtung&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;gp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;FlowDirection_sa&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;resample&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; FlowDir_Fill2&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"NORMAL"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; absenkung&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"flowdir"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

&lt;SPAN class="comment token"&gt;# Process: Senke&lt;/SPAN&gt;
arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;gp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Sink_sa&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;FlowDir_Fill2&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; Sink_FlowDir1&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"sink"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;RasterToPolygon_conversion&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;Sink_FlowDir1&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"{}{}"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;format&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Senke08mfill"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;basename&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;os&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;path&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;splitext&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;DGM005_tif&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"SIMPLIFY"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
                                  &lt;SPAN class="string token"&gt;"VALUE"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Done"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CheckInExtension&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Spatial"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:28:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675076#M9827</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2021-12-12T04:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sink results in very different demarkations?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675077#M9828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the statement that "new sinks can be created" during the process&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/how-sink-works.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/how-sink-works.htm"&gt;How Sink works—Help | Documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I am not sure why you would resample the Fill rather than the dem if you want the sinks at a coarser resolution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 07:34:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675077#M9828</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2020-04-08T07:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: Sink results in very different demarkations?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675078#M9829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought if&amp;nbsp; I fill the dem first it would sum the sinks better up. Would you remove the fill calculation? &lt;/P&gt;&lt;P&gt;I don't really understand why the small lakes in the area are not all thrown out as sinks? Even in the best result I could reach so far.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 07:53:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675078#M9829</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2020-04-08T07:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sink results in very different demarkations?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675079#M9830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/how-fill-works.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/how-fill-works.htm"&gt;How Fill works—Help | Documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since I am not sure what your intent is in your workflow, then the comment from the above link may be pertinent to it.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;&lt;A class="" href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/fill.htm" style="color: #0074b8; text-decoration: none;"&gt;Fill&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;tool uses the equivalents of several tools, such as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;Focal Flow&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;Flow Direction&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;Sink&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;Watershed&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;, and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;Zonal Fill&lt;/SPAN&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;, to locate and fill sinks. The tool iterates until all sinks within the specified z limit are filled. As sinks are filled, others can be created at the boundaries of the filled areas, which are removed in the next iteration.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 08:03:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675079#M9830</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2020-04-08T08:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Sink results in very different demarkations?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675080#M9831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm searching for areas for rewetting, so my intentions is to get some aggregated areas where it's worth to try build barriers to dam the water. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 08:13:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675080#M9831</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2020-04-08T08:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Sink results in very different demarkations?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675081#M9832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suspect it is the aggregation step&lt;/P&gt;&lt;P&gt;what affect do you think that has on the output given your parameters&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/how-aggregate-works.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/how-aggregate-works.htm"&gt;How Aggregate works—Help | Documentation&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The change in cell size seems to be the issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 11:24:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675081#M9832</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2020-04-08T11:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sink results in very different demarkations?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675082#M9833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are right, if I resample to strong I get totally different areas (which didn't existed before) after a unknown threshold. The fill tool does a good job to smooth the elevation data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Didn't know the Aggregate Tool, will try it. &lt;/P&gt;&lt;P&gt;Thank you for your thoughts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 11:53:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675082#M9833</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2020-04-08T11:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Sink results in very different demarkations?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675083#M9834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Johannes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to understand your analysis requirements from you statement, "I&lt;SPAN style="background-color: #ffffff;"&gt;'m searching for areas for rewetting, so my intentions is to get some aggregated areas where it's worth to try build barriers to dam the water."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Are you trying to identify all sinks or sinks larger than a certain depth or area or volume?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="background-color: #ffffff;"&gt;What do you mean by, "&lt;SPAN&gt;to get some aggregated areas"? Do you want the total areas of all available sinks that meet certain criteria?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;What is the purpose of changing the resolution of your DEM by resampling?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;Just as a side note,&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;Once you run Fill on a DEM without a Z-Limit all sinks get filled.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;Once you resample (using bilinear), it is possible a new sink could get created because of&amp;nbsp;how the elevation is recalculated for each cell.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;If you want to change the resolution of your DEM, You probably want to resample before you run any hydrology tool such as Fill, FlowDirection etc. Also chose the resampling technique (nearest neighbor or bilinear) based on your application. Bilinear will smooth out your DEM, which may change the flow direction.&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;Aggregate tool generates a reduced-resolution version of a raster. Each output cell contains the Sum, Minimum, Maximum, Mean, or Median of the input cells that are encompassed by the extent of that cell.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;If you are just looking for the total area of all sinks/depressions, you can just look at the count field in the Raster Attribute Table and multiply with cellsize*cellsize to get the area in map units. You can also use tool like Zonal Geometry, Zonal Geometry As Table, Zonal Statistics, Zonal Statistics As Table depending on your application.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;One last thing, you may consider running Spatial Analyst tools using the ArcPy&amp;nbsp; sa module. Your output will be on the left hand side and all intermediate data will be temporary and will be deleted by the system. You can just save the final output. If you write a complex map algebra expression, it will be optimized and efficient as well.&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;Noman&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;Esri, Redlans, CA&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2020 19:33:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675083#M9834</guid>
      <dc:creator>NawajishNoman</dc:creator>
      <dc:date>2020-04-08T19:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Sink results in very different demarkations?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675084#M9835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Norman,&lt;/P&gt;&lt;P&gt;Thank you for your answer and the hints concerning the arcpy sa module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yesterday I used a dem with 5m resolution. Now I get some kind of relatively hight resolution laserdata with 8 points/m². I calculated a dem raster with a resolution of 0.3 m out of this data. The only reason I use fill infront of the resampling is to smoothe the dem slightly in an appropriate manner without changing the data too much. Especially the local hights I don't want to change. With this resolution I get a very rough surface so the fill tool is in my opinion the better solution to smooth the dem than resampling the data at this step?&lt;/P&gt;&lt;P&gt;After the fill step I resampled the data to a cellsize of 3m bilinear. Would you use nearest neighbor in this step? After that I go on with flow direction ... sink ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To your questions:&lt;/P&gt;&lt;P&gt;1. I'm not interested in all (small) sinks, I need sinks larger than an area (let's say about 5000m²) which are worth to be considered as rewetting area.&lt;/P&gt;&lt;P&gt;2. Yes I would like to get the &lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt; total areas of all available sinks that meet the certain &amp;gt; 5000m².&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;3. The only purpose of changing the resolution is that I get otherwise only millions of very small sinks because of the "hight" resolution of my data.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;How would you arrange the steps of the calculation? Would you put in a fill step after the resampling to a cellsize of 3m?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2020 05:02:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675084#M9835</guid>
      <dc:creator>JohannesBierer</dc:creator>
      <dc:date>2020-04-09T05:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Sink results in very different demarkations?</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675085#M9836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Johannes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for clarifying your analysis objectives. I will try to outline a few steps, where some are required and some other might be optional. Since&amp;nbsp;there are many different ways to approach each step, I will just pick one, however, you can decide to do run some other tool to find the same final answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still not clear why you want to change the resolution of your DEM, so for the moment I will put it aside and approach this analysis with the original data. And then we will come back to&amp;nbsp;changing the resolution if needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Smoothing out the DEM to remove small errors&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If you are worried about the accuracy of the data and want to smooth it out, you can use the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/filter.htm"&gt;Filter &lt;/A&gt;tool with the 'Low pass' option. If you want more control over the neighborhood, you can use the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/focal-statistics.htm"&gt;Focal Statistics&lt;/A&gt; too.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Removing small sinks&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Since you are interested in larger sinks, surface area more that 5000 sq.m, you may decide to remove some sinks at this early stage of analysis. You can do this by running the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/fill.htm"&gt;Fill &lt;/A&gt;tool with a z-limit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="background-color: #ffffff; color: #4c4c4c; "&gt;The z-limit specifies the maximum difference allowed between the depth of a sink and the pour point and determines which sinks will be filled and which will remain untouched. The z-limit is not the maximum depth to which a sink will be filled.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;Choosing an appropriate z-limit could be tricky when your criteria is the surface area of a sink.&amp;nbsp;However, since you are looking at rewetting and dam, I am sure you have a depth of the sink in consideration below which the sink is not worth considering. So, you can easily use that depth to weed out some sinks.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;Let's call this filled (with z-limit) DEM as &lt;EM&gt;FilledDEMwithZLimit&lt;/EM&gt;. We will use this DEM for further analysis.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="background-color: #ffffff; color: #4c4c4c; "&gt;3. Identify remaining sinks&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Now it's time to identify the remaining sinks in&amp;nbsp;&lt;EM style="color: #4c4c4c;"&gt;FilledDEMwithZLimit&lt;/EM&gt;&lt;SPAN style="color: #4c4c4c; background-color: #ffffff;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Run the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/flow-direction.htm"&gt;Fill&lt;/A&gt; tool using the D8 option and then run the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/sink.htm"&gt;Sink&lt;/A&gt; tool.&lt;/P&gt;&lt;P&gt;The output from the Sink tool will contain all remaining sinks. Let's call this output &lt;EM&gt;AllSinks.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Please make sure the output&amp;nbsp;&lt;EM&gt;AllSinks &lt;/EM&gt;has the raster attribute table. If not, please use the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/build-raster-attribute-table.htm"&gt;Build Raster Attribute Table&lt;/A&gt; tool to create the attribute table.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4. Identify sinks larger than 5000 sq.m.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;There are many ways to approach this step. I will start with a very simple approach. We will just look at the COUNT field in the raster attribute table of&amp;nbsp;&lt;EM&gt;AllSinks&amp;nbsp;&lt;/EM&gt;to look for sinks that meets your criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You said your DEM cell size is 30cm. So, any sink with a cell count of&amp;nbsp; (5000 / (0.3 * 0.3)) =&amp;nbsp;55,556 will meet your criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can look at the raster attribute table&amp;nbsp;&lt;SPAN&gt;of&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;AllSinks, &lt;/EM&gt;select rows where COUNT is equal to or greater than 55,556. These are the sinks meet your criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An alternative approach is to run &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/zonal-geometry-as-table.htm"&gt;Zonal Geometry As Table&lt;/A&gt; to find out which sinks meet your criteria. The good part is, from the output of&amp;nbsp;&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/zonal-geometry-as-table.htm" style="color: #2989c5; text-decoration: none;"&gt;Zonal Geometry As Table&lt;/A&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;you will not only get the area, you will have some additional information about the shape and location of the sinks that meet your criteria.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5.&amp;nbsp;Finding the total sink area for the sinks meet your criteria&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;You can use the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/analysis/summary-statistics.htm"&gt;Summary Statistics&lt;/A&gt; tool to do this task.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;You can use the&amp;nbsp;&lt;EM&gt;AllSinks, &lt;/EM&gt;select the rows that meet the criteria, run&amp;nbsp;the&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/analysis/summary-statistics.htm" style="color: #2989c5; text-decoration: none;"&gt;Summary Statistics&lt;/A&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;tool&lt;SPAN&gt;&amp;nbsp;and find Sum on the COUNT field. You can multiply the sum of COUNT by (cellsize * cellsize) to find the total area.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;Alternatively you can&amp;nbsp;use the output from&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/zonal-geometry-as-table.htm" style="color: #2989c5; text-decoration: none;"&gt;Zonal Geometry As Table&lt;/A&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;,&amp;nbsp;select the rows that meet the criteria, run&amp;nbsp;the&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/analysis/summary-statistics.htm" style="color: #2989c5; text-decoration: none;"&gt;Summary Statistics&lt;/A&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;tool&lt;SPAN&gt;&amp;nbsp;and find Sum on the AREA field.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;An alternate approach&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please note, there are many ways we can come to the same result. One of the interesting&amp;nbsp;approach could be to to run Fill without the z-limit using&amp;nbsp;&lt;EM style="color: #4c4c4c;"&gt;FilledDEMwithZLimit&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN style="background-color: #ffffff;"&gt;as input.&amp;nbsp;Let's call this output as &lt;EM&gt;FilledDEM&lt;/EM&gt;. Then use the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/cut-fill.htm"&gt;Cut Fill&lt;/A&gt; tool to find the area and volume of each sink. You can then select your sinks by applying the criteria of the&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/spatial-analyst/cut-fill.htm" style="color: #2989c5; text-decoration: none;"&gt;Cut Fill&lt;/A&gt;&amp;nbsp;output. And then of course run the&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/analysis/summary-statistics.htm" style="color: #2989c5; text-decoration: none;"&gt;Summary Statistics&lt;/A&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;tool to find the total area.&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Changing the resolution of the DEM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Now that we have discussed the steps for fining your sinks and calculating the total area, let's go back to the DEM resolution question. I am still not sure why you need to&amp;nbsp;lower the resolution of the DEM if your computer can process all the steps with the original high resolution DEM within reasonable time. If you still think it is necessary to lower the resolution of your DEM, you can run the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/resample.htm"&gt;Resample&lt;/A&gt;&amp;nbsp;tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my opinion, you can do it either before step 1 or after. But before you run any fill operation in step 2.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you have any additional questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Noman&lt;/P&gt;&lt;P&gt;Esri, Redlands, CA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Apr 2020 04:57:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/sink-results-in-very-different-demarkations/m-p/675085#M9836</guid>
      <dc:creator>NawajishNoman</dc:creator>
      <dc:date>2020-04-10T04:57:43Z</dc:date>
    </item>
  </channel>
</rss>

