<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Upslope area - D-infinity flow</title>
	<link>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/</link>
	<description>Steve Eddins manages the Image &#38; Geospatial development team at &#60;a href="http://www.mathworks.com/"&#62;The MathWorks&#60;/a&#62; and coauthored &#60;a href="http://www.mathworks.com/support/books/book5291.html?category=-1&#38;language=-1"&#62;Digital Image Processing Using MATLAB&#60;/a&#62;. He writes here about image processing concepts, algorithm implementations, and MATLAB.&#60;br&#62;&#60;br&#62;&#60;img&#62;</description>
	<pubDate>Mon, 23 Nov 2009 00:10:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Liu Jintao</title>
		<link>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21457</link>
		<dc:creator>Liu Jintao</dc:creator>
		<pubDate>Wed, 11 Feb 2009 01:48:19 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21457</guid>
		<description>thank you!! I have managed to solve it.</description>
		<content:encoded><![CDATA[<p>thank you!! I have managed to solve it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21456</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 10 Feb 2009 20:06:56 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21456</guid>
		<description>Liu&#8212;The else-branch is followed when s equals 0. 

I posted my complete upslope area implementation to the MATLAB Central File Exchange: &lt;a href="http://www.mathworks.com/matlabcentral/fileexchange/15818" rel="nofollow"&gt;http://www.mathworks.com/matlabcentral/fileexchange/15818&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Liu&mdash;The else-branch is followed when s equals 0. </p>
<p>I posted my complete upslope area implementation to the MATLAB Central File Exchange: <a href="http://www.mathworks.com/matlabcentral/fileexchange/15818" rel="nofollow">http://www.mathworks.com/matlabcentral/fileexchange/15818</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Liu Jintao</title>
		<link>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21455</link>
		<dc:creator>Liu Jintao</dc:creator>
		<pubDate>Tue, 10 Feb 2009 06:28:30 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21455</guid>
		<description>Hi, Steve
 
I am trying to implement your program for Tarboton's algorithm. But I have some questions about his equation (3) as s = hypot(s1, s2). Since it gives a positive or zero value. What is the meaning for the following in your program.
 
&lt;pre&gt;
if s &gt; 0
    % Maximum down-slope is positive.
    r = (af(k_max) * rp(k_max)) + (ac(k_max) * pi / 2);
else
    % The pixel is in a flat area or is a pit.  Flow direction angle is
    % unresolved.
    r = NaN;
end
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Hi, Steve</p>
<p>I am trying to implement your program for Tarboton&#8217;s algorithm. But I have some questions about his equation (3) as s = hypot(s1, s2). Since it gives a positive or zero value. What is the meaning for the following in your program.</p>
<pre>
if s > 0
    % Maximum down-slope is positive.
    r = (af(k_max) * rp(k_max)) + (ac(k_max) * pi / 2);
else
    % The pixel is in a flat area or is a pit.  Flow direction angle is
    % unresolved.
    r = NaN;
end
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21264</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 18 Nov 2008 14:22:14 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21264</guid>
		<description>Ali&#8212;This &lt;a href="http://blogs.mathworks.com/steve/category/upslope-area/" rel="nofollow"&gt;whole series of posts&lt;/a&gt; is about D-infinity flow accumulation computation.  I have MATLAB &lt;a href="http://www.mathworks.com/matlabcentral/fileexchange/15818" rel="nofollow"&gt;code&lt;/a&gt; posted on the File Exchange which you can use.  If you are asking about how to do it in Arc GIS, then well, you're asking the wrong company.  :-)</description>
		<content:encoded><![CDATA[<p>Ali&mdash;This <a href="http://blogs.mathworks.com/steve/category/upslope-area/" rel="nofollow">whole series of posts</a> is about D-infinity flow accumulation computation.  I have MATLAB <a href="http://www.mathworks.com/matlabcentral/fileexchange/15818" rel="nofollow">code</a> posted on the File Exchange which you can use.  If you are asking about how to do it in Arc GIS, then well, you&#8217;re asking the wrong company.  :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ali</title>
		<link>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21252</link>
		<dc:creator>Ali</dc:creator>
		<pubDate>Fri, 14 Nov 2008 21:56:31 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21252</guid>
		<description>hi
thank you for guidance.
i need help too compute and draw flow accumulation for d-infinity.
arc gis extract drinage line for d8 algorithm(toolbox archydro)but don't extrac drinage line for d infinity(taudem).
what do you think about drinageline for d-infinity?
sincerely</description>
		<content:encoded><![CDATA[<p>hi<br />
thank you for guidance.<br />
i need help too compute and draw flow accumulation for d-infinity.<br />
arc gis extract drinage line for d8 algorithm(toolbox archydro)but don&#8217;t extrac drinage line for d infinity(taudem).<br />
what do you think about drinageline for d-infinity?<br />
sincerely</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21205</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 30 Oct 2008 12:26:50 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21205</guid>
		<description>Ali&#8212;My upslope area code can be downloaded from the &lt;a href="http://www.mathworks.com/matlabcentral/fileexchange/15818" rel="nofollow"&gt;MATLAB Central File Exchange&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Ali&mdash;My upslope area code can be downloaded from the <a href="http://www.mathworks.com/matlabcentral/fileexchange/15818" rel="nofollow">MATLAB Central File Exchange</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ali</title>
		<link>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21204</link>
		<dc:creator>ali</dc:creator>
		<pubDate>Thu, 30 Oct 2008 10:42:11 +0000</pubDate>
		<guid>http://blogs.mathworks.com/steve/2007/04/26/upslope-area-part-2/#comment-21204</guid>
		<description>hi 
i am writing my tese and subject is flow direction
i need determine flow accumulation by dinf algorithm,
but tau dem don't don't drawing drinage line by dinf.
how do i get your program?
sincerely</description>
		<content:encoded><![CDATA[<p>hi<br />
i am writing my tese and subject is flow direction<br />
i need determine flow accumulation by dinf algorithm,<br />
but tau dem don&#8217;t don&#8217;t drawing drinage line by dinf.<br />
how do i get your program?<br />
sincerely</p>
]]></content:encoded>
	</item>
</channel>
</rss>
