<?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 compare 3d polyline to raster surface in Geoprocessing Questions</title>
    <link>https://community.esri.com/t5/geoprocessing-questions/compare-3d-polyline-to-raster-surface/m-p/390108#M13311</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 3D flight path data. I want to know if the aircraft is violating above ground altitude restrictions over sensitive&amp;nbsp;areas. I have a raster mosaic of national&amp;nbsp;elevation data for the areas of interest. I was originally&amp;nbsp;thinking that I could turn the line into a raster with the cell values containing&amp;nbsp;the interpolated&amp;nbsp;z values along the line (Looks like arc can not do this out of the box? ). Then I could do map algebra&amp;nbsp;to compare&amp;nbsp;the two surfaces. If the difference&amp;nbsp;between the two surfaces&amp;nbsp;is below the min above ground&amp;nbsp;recommendation&amp;nbsp;the flight will be flagged&amp;nbsp;for investigation. Now I am thinking of using densify&amp;nbsp;on the line turning it into points and comparing them to an extraction by point from the ground raster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sure I am not the first person to want to do this. Does anyone have any good suggestions for this problem? I have thousands of flights to process for the next few years so I will be scripting the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Forest&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Dec 2016 01:40:26 GMT</pubDate>
    <dc:creator>forestknutsen1</dc:creator>
    <dc:date>2016-12-30T01:40:26Z</dc:date>
    <item>
      <title>compare 3d polyline to raster surface</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/compare-3d-polyline-to-raster-surface/m-p/390108#M13311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 3D flight path data. I want to know if the aircraft is violating above ground altitude restrictions over sensitive&amp;nbsp;areas. I have a raster mosaic of national&amp;nbsp;elevation data for the areas of interest. I was originally&amp;nbsp;thinking that I could turn the line into a raster with the cell values containing&amp;nbsp;the interpolated&amp;nbsp;z values along the line (Looks like arc can not do this out of the box? ). Then I could do map algebra&amp;nbsp;to compare&amp;nbsp;the two surfaces. If the difference&amp;nbsp;between the two surfaces&amp;nbsp;is below the min above ground&amp;nbsp;recommendation&amp;nbsp;the flight will be flagged&amp;nbsp;for investigation. Now I am thinking of using densify&amp;nbsp;on the line turning it into points and comparing them to an extraction by point from the ground raster.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sure I am not the first person to want to do this. Does anyone have any good suggestions for this problem? I have thousands of flights to process for the next few years so I will be scripting the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Forest&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 01:40:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/compare-3d-polyline-to-raster-surface/m-p/390108#M13311</guid>
      <dc:creator>forestknutsen1</dc:creator>
      <dc:date>2016-12-30T01:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: compare 3d polyline to raster surface</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/compare-3d-polyline-to-raster-surface/m-p/390109#M13312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the source data is in point format, you could use the&amp;nbsp;&lt;EM&gt;Extract Values to Points&lt;/EM&gt;&amp;nbsp; tool to add the elevation value from your raster to your point dataset. Then simply add a column and use the calculator to subtract the two values. This would introduce less 'noise' through interpolation, particularly relevant if it may trigger an investigation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 05:13:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/compare-3d-polyline-to-raster-surface/m-p/390109#M13312</guid>
      <dc:creator>MervynLotter</dc:creator>
      <dc:date>2016-12-30T05:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: compare 3d polyline to raster surface</title>
      <link>https://community.esri.com/t5/geoprocessing-questions/compare-3d-polyline-to-raster-surface/m-p/390110#M13313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I agree with that overall. The raw data is lat, long, altitude locations. But I do need to add vertices because&amp;nbsp;the time between sample points is too great. The aircraft can transit a restricted area without collecting a GPS point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I am going to go with:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Densify&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Feature Vertices to Points&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Add XY Coordinates&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Extract Values to Points&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Calculate Field&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Then based on this output I can select points and buffer then cut my original&amp;nbsp;lines to show problem areas of the flight.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 19:26:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/geoprocessing-questions/compare-3d-polyline-to-raster-surface/m-p/390110#M13313</guid>
      <dc:creator>forestknutsen1</dc:creator>
      <dc:date>2016-12-30T19:26:48Z</dc:date>
    </item>
  </channel>
</rss>

