<?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: Volume Calculation using Cut/Fill Lowest Point base plane in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/volume-calculation-using-cut-fill-lowest-point/m-p/171495#M13188</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much, but it's not what i want right now, i stuck with how to achieve the lowest point base plane.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jan 2017 07:12:36 GMT</pubDate>
    <dc:creator>Thanh_NgocDao</dc:creator>
    <dc:date>2017-01-17T07:12:36Z</dc:date>
    <item>
      <title>Volume Calculation using Cut/Fill Lowest Point base plane</title>
      <link>https://community.esri.com/t5/python-questions/volume-calculation-using-cut-fill-lowest-point/m-p/171491#M13184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi every one,&lt;/P&gt;&lt;P&gt;I'm writing a python script to calculate the volume of a polygon on raster using Cut/Fill tool and i see in some online service (for ex: DroneDeploy.com ...) for volume calculation there are 2 type of base plane: Best fit and lowest point:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="https://files.readme.io/3OW3m0AZTuSmTu6nHwHn_Screenshot%202016-06-22%2017.27.17.png" style="width: 620px; height: 844px;" /&gt;&lt;/P&gt;&lt;P&gt;Currently, i script seem to produce the result as same as DroneDeploy.com with their Best Fit base plane.&lt;/P&gt;&lt;P&gt;I want to writing another script to calculate volume with Lowest Point but don't know where to start with. You guys have any ideas about this problem?&lt;/P&gt;&lt;P&gt;Thanh you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 02:47:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/volume-calculation-using-cut-fill-lowest-point/m-p/171491#M13184</guid>
      <dc:creator>Thanh_NgocDao</dc:creator>
      <dc:date>2017-01-17T02:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Volume Calculation using Cut/Fill Lowest Point base plane</title>
      <link>https://community.esri.com/t5/python-questions/volume-calculation-using-cut-fill-lowest-point/m-p/171492#M13185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;are you looking for how to extend the base polyline parallel in the x,y direction and drop the z values of the upper polyline down to intersect with that plane? &amp;nbsp;could be emulated with a 2d buffer of the lower step and a 3D intersect with the upper polyline. &amp;nbsp;That would give you the back wall plane from which you could then determine the volume assuming you have the front and side planes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 04:27:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/volume-calculation-using-cut-fill-lowest-point/m-p/171492#M13185</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-01-17T04:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Volume Calculation using Cut/Fill Lowest Point base plane</title>
      <link>https://community.esri.com/t5/python-questions/volume-calculation-using-cut-fill-lowest-point/m-p/171493#M13186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you looked at the surface volume tool?&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/3d-analyst-toolbox/surface-volume.htm"&gt;surface-volume&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 06:23:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/volume-calculation-using-cut-fill-lowest-point/m-p/171493#M13186</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2017-01-17T06:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Volume Calculation using Cut/Fill Lowest Point base plane</title>
      <link>https://community.esri.com/t5/python-questions/volume-calculation-using-cut-fill-lowest-point/m-p/171494#M13187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry sir, but can you show me some pseudo-code or something like that to achieve with arcpy because i don't understand your answer&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 07:11:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/volume-calculation-using-cut-fill-lowest-point/m-p/171494#M13187</guid>
      <dc:creator>Thanh_NgocDao</dc:creator>
      <dc:date>2017-01-17T07:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Volume Calculation using Cut/Fill Lowest Point base plane</title>
      <link>https://community.esri.com/t5/python-questions/volume-calculation-using-cut-fill-lowest-point/m-p/171495#M13188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much, but it's not what i want right now, i stuck with how to achieve the lowest point base plane.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2017 07:12:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/volume-calculation-using-cut-fill-lowest-point/m-p/171495#M13188</guid>
      <dc:creator>Thanh_NgocDao</dc:creator>
      <dc:date>2017-01-17T07:12:36Z</dc:date>
    </item>
  </channel>
</rss>

