<?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: Can I create a 3D distance raster? in 3D Questions</title>
    <link>https://community.esri.com/t5/3d-questions/can-i-create-a-3d-distance-raster/m-p/724165#M4354</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;So, a 2D raster will give you the distance from a central point. What if my central point is on top of a mountain, and I want an accurate distance to other parts of my map? Ie a 3D distance between the centre point and every cell.&lt;BR /&gt;&lt;BR /&gt;How do I combine my DEM with a distance raster to produce a 3D distance raster?&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am bumping this old thread because I have a similar problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have two feature classes.&amp;nbsp; One contains a point representing an animal location (actually it contains 400,000 points, but for simplicity lets just start with one).&amp;nbsp; The other contains a set of lines representing roads on the landscape.&amp;nbsp; I would like to calculate the distance to the *nearest* feature but I would like to do this in a way which accounts for travel over rugged terrain such that I have the true on the ground.&amp;nbsp; Near gets me 2D nearest distance, Near 3D does this in 3D space but not across the landscape (up and down over hilly terrain).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If anybody has any suggestions on this please let me know.&amp;nbsp; I am not opposed to writing custom python or moving this analysis to another program such as R.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It seems to be a cost or path distance problem.&amp;nbsp; Of course it will be computationally intensive to say the least for 400,000 locations, more so that Near itself.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Apr 2013 18:46:21 GMT</pubDate>
    <dc:creator>AndrewDuff</dc:creator>
    <dc:date>2013-04-25T18:46:21Z</dc:date>
    <item>
      <title>Can I create a 3D distance raster?</title>
      <link>https://community.esri.com/t5/3d-questions/can-i-create-a-3d-distance-raster/m-p/724161#M4350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So, a 2D raster will give you the distance from a central point. What if my central point is on top of a mountain, and I want an accurate distance to other parts of my map? Ie a 3D distance between the centre point and every cell.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How do I combine my DEM with a distance raster to produce a 3D distance raster?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Jul 2010 21:31:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/can-i-create-a-3d-distance-raster/m-p/724161#M4350</guid>
      <dc:creator>jimparsons</dc:creator>
      <dc:date>2010-07-24T21:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create a 3D distance raster?</title>
      <link>https://community.esri.com/t5/3d-questions/can-i-create-a-3d-distance-raster/m-p/724162#M4351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Check out the Path Distance tool in Spatial Analyst.&amp;nbsp; Based on my understanding of your desired output, do not input a cost raster, and only input the surface raster (your DEM).&amp;nbsp; The values in the surface raster are used to calculate the actual surface distance that will be covered when passing between cells.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//009z0000001q000000.htm"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//009z0000001q000000.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Eric&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jul 2010 15:34:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/can-i-create-a-3d-distance-raster/m-p/724162#M4351</guid>
      <dc:creator>EricRice</dc:creator>
      <dc:date>2010-07-26T15:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create a 3D distance raster?</title>
      <link>https://community.esri.com/t5/3d-questions/can-i-create-a-3d-distance-raster/m-p/724163#M4352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Eric. That's certainly closer. But I want the 3D distance from my observer point to every other cell in the grid, regardless of the surface distance. Imagine a ray that could shoot straight through the terrain until it intersected the target cell. I need this distance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I need it to create a depth map by projecting the distance raster in ArcScene and matching the viewer position with the centre of the distance raster.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I suppose it could be made more efficient by starting with a viewshed from the point:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1. find all cells visible from P&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. calculate 3D distance from P to every visible cell&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In this case we can forget about distance to invisible cells. How would you go about getting the distance to a selection of cells? I don't want to trace the path on the ground, I want the distance that a ray of light would travel from cell to cell in a straight line. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jul 2010 16:14:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/can-i-create-a-3d-distance-raster/m-p/724163#M4352</guid>
      <dc:creator>jimparsons1</dc:creator>
      <dc:date>2010-07-26T16:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create a 3D distance raster?</title>
      <link>https://community.esri.com/t5/3d-questions/can-i-create-a-3d-distance-raster/m-p/724164#M4353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Jim,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think I can get you most of the way there. Let me know what you think of these workflows.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do the Viewshed, and use the visible area as a mask in Extract by Mask to get the DEM that is visible.&amp;nbsp; Convert the visible DEM to points.&amp;nbsp; Make those points 3d.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Make your observer 3d also (by attribute or by surface value).&amp;nbsp; Go to 3D Analyst tools &amp;gt; 3d Features &amp;gt; Near 3D. Input 3d observer and 3d visible points.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Near 3D (only in ArcGIS 10)&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00q900000005000000.htm"&gt;http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00q900000005000000.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you really need a raster output, calculate the 3d distance of every cell (3d points) to the observer point, then convert the points back into a raster using the 3d distance field.&amp;nbsp; Then clip it to just the visible portions.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you don't have 10 I could see you doing a combo of Euclidean Distance and creating a difference raster (height difference) between your surface and a constant raster where the observer is.&amp;nbsp; This would give you sides A and B of a triangle.&amp;nbsp; Then take the sqr root of A squared + B squared to get C (the 3d distance).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jul 2010 17:58:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/can-i-create-a-3d-distance-raster/m-p/724164#M4353</guid>
      <dc:creator>EricRice</dc:creator>
      <dc:date>2010-07-26T17:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Can I create a 3D distance raster?</title>
      <link>https://community.esri.com/t5/3d-questions/can-i-create-a-3d-distance-raster/m-p/724165#M4354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;So, a 2D raster will give you the distance from a central point. What if my central point is on top of a mountain, and I want an accurate distance to other parts of my map? Ie a 3D distance between the centre point and every cell.&lt;BR /&gt;&lt;BR /&gt;How do I combine my DEM with a distance raster to produce a 3D distance raster?&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am bumping this old thread because I have a similar problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have two feature classes.&amp;nbsp; One contains a point representing an animal location (actually it contains 400,000 points, but for simplicity lets just start with one).&amp;nbsp; The other contains a set of lines representing roads on the landscape.&amp;nbsp; I would like to calculate the distance to the *nearest* feature but I would like to do this in a way which accounts for travel over rugged terrain such that I have the true on the ground.&amp;nbsp; Near gets me 2D nearest distance, Near 3D does this in 3D space but not across the landscape (up and down over hilly terrain).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If anybody has any suggestions on this please let me know.&amp;nbsp; I am not opposed to writing custom python or moving this analysis to another program such as R.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It seems to be a cost or path distance problem.&amp;nbsp; Of course it will be computationally intensive to say the least for 400,000 locations, more so that Near itself.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Apr 2013 18:46:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/can-i-create-a-3d-distance-raster/m-p/724165#M4354</guid>
      <dc:creator>AndrewDuff</dc:creator>
      <dc:date>2013-04-25T18:46:21Z</dc:date>
    </item>
  </channel>
</rss>

