<?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: [C#] How to create Line of Sight? in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121730#M3190</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well, you are right &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;After a lot of googling, I found out that I need "Linear Line of Sight", based on my DTED data. You can see the screenshot I posted earlier. How can I get linear Line of Sight between two points?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Mar 2013 12:28:42 GMT</pubDate>
    <dc:creator>oyleiste</dc:creator>
    <dc:date>2013-03-27T12:28:42Z</dc:date>
    <item>
      <title>[C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121725#M3185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm able to load a DTED Level 0 file into a RasterDataset, color it and create a IRasterLayer from it to add into axMapControl. Here is my working code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;IWorkspaceFactory wsf = new RasterWorkspaceFactoryClass(); IRasterWorkspace rasterWS = (IRasterWorkspace)wsf.OpenFromFile(@"C:\Users\ABC\Desktop\DTED_E30N40\dted\e034", 0); rasterDS = rasterWS.OpenRasterDataset("n40.dt0");&amp;nbsp; IRasterBandCollection pRasterBandCollection = (IRasterBandCollection)rasterDS; IEnumRasterBand pEnumRasterBand = pRasterBandCollection.Bands; IRasterBand pRasterBand = pEnumRasterBand.Next(); pRasterBand.ComputeStatsAndHist(); IRasterStatistics pRasterStatistics = pRasterBand.Statistics;&amp;nbsp; IRgbColor pFromColor = new RgbColorClass(); pFromColor.Red = 20; pFromColor.Green = 20; pFromColor.Blue = 220;&amp;nbsp; IRgbColor pToColor = new RgbColorClass(); pToColor.Red = 220; pToColor.Green = 20; pToColor.Blue = 20;&amp;nbsp; IAlgorithmicColorRamp pAlgorithmicColorRamp = new AlgorithmicColorRampClass(); pAlgorithmicColorRamp.FromColor = pFromColor; pAlgorithmicColorRamp.ToColor = pToColor; pAlgorithmicColorRamp.Algorithm = esriColorRampAlgorithm.esriHSVAlgorithm; pAlgorithmicColorRamp.Size = 255;&amp;nbsp; bool bOK; pAlgorithmicColorRamp.CreateRamp(out bOK);&amp;nbsp; IRasterStretchColorRampRenderer pRasterStretchColorRampRenderer = new RasterStretchColorRampRendererClass(); pRasterStretchColorRampRenderer.BandIndex = 0; pRasterStretchColorRampRenderer.LabelHigh = pRasterStatistics.Maximum.ToString(); pRasterStretchColorRampRenderer.LabelLow = pRasterStatistics.Minimum.ToString(); pRasterStretchColorRampRenderer.ColorRamp = pAlgorithmicColorRamp;&amp;nbsp; IRasterLayer rasterLayer = new RasterLayer(); rasterLayer.CreateFromDataset(rasterDS); rasterLayer.Name = "DTED Level 0 [E34-N40]"; rasterLayer.Renderer = (IRasterRenderer)pRasterStretchColorRampRenderer; axMapControl1.AddLayer(rasterLayer);&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;The result is this screenshot of axMapControl:[ATTACH=CONFIG]22980[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, I want to create Line of Sight; between observer and a point. How can I do that? I have no idea unfortunately.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 10:42:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121725#M3185</guid>
      <dc:creator>oyleiste</dc:creator>
      <dc:date>2013-03-27T10:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: [C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121726#M3186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;By the way, I found this class: &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/arcobjects-net/componenthelp/index.html#//004z0000014r000000"&gt;LineOfSight Class&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;but I don't have ESRI.ArcGIS.Analyst3DTools namespace. Why?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't either have ESRI.ArcGIS.SpatialAnalystTools to use &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/arcobjects-net/componenthelp/index.html#//004z00000354000000"&gt;ViewShed Class&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Any idea about adding these namespaces?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sincerely&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 10:46:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121726#M3186</guid>
      <dc:creator>oyleiste</dc:creator>
      <dc:date>2013-03-27T10:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: [C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121727#M3187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;By the way, I found this class: &lt;A href="http://resources.arcgis.com/en/help/arcobjects-net/componenthelp/index.html#//004z0000014r000000"&gt;LineOfSight Class&lt;/A&gt;&lt;BR /&gt;but I don't have ESRI.ArcGIS.Analyst3DTools namespace. Why?&lt;BR /&gt;I don't either have ESRI.ArcGIS.SpatialAnalystTools to use &lt;A href="http://resources.arcgis.com/en/help/arcobjects-net/componenthelp/index.html#//004z00000354000000"&gt;ViewShed Class&lt;/A&gt;.&lt;BR /&gt;Any idea about adding these namespaces?&lt;BR /&gt;&lt;BR /&gt;Sincerely&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You have to add a reference to Analyst3DTools to your project.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1) Right-click References in your project&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2) Click Add Reference&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3) Select the .NET tab&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4) Select ESRI.ArcGIS.Analyst3DTools&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5) Click OK&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do the same for ESRI.ArcGIS.SpatialAnalysisTools.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 11:38:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121727#M3187</guid>
      <dc:creator>JasonPike</dc:creator>
      <dc:date>2013-03-27T11:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: [C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121728#M3188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;You have to add a reference to Analyst3DTools to your project.&lt;BR /&gt;1) Right-click References in your project&lt;BR /&gt;2) Click Add Reference&lt;BR /&gt;3) Select the .NET tab&lt;BR /&gt;4) Select ESRI.ArcGIS.Analyst3DTools&lt;BR /&gt;5) Click OK&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you very much for your reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Well, do you have any idea about using LineOfSight or ViewShed class? How to set observer and point?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;By the way, both namespaces (ESRI.ArcGIS.Analyst3DTools &amp;amp; ESRI.ArcGIS.SpatialAnalysisTools) has ViewShed class. I'll use Analyst3DTools' class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank again &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 11:55:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121728#M3188</guid>
      <dc:creator>oyleiste</dc:creator>
      <dc:date>2013-03-27T11:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: [C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121729#M3189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thank you very much for your reply.&lt;BR /&gt;&lt;BR /&gt;Well, do you have any idea about using LineOfSight or ViewShed class? How to set observer and point?&lt;BR /&gt;&lt;BR /&gt;By the way, both namespaces (ESRI.ArcGIS.Analyst3DTools &amp;amp; ESRI.ArcGIS.SpatialAnalysisTools) has ViewShed class. I'll use Analyst3DTools' class.&lt;BR /&gt;&lt;BR /&gt;Thank again &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't think I fully understand what you are trying to do. The classes you mention seem to be for use in ArcGlobe, but you mentioned AxMapControl, which I think is for use in ArcMap. I'm new to ArcGIS, so those might be bad assumptions. Can you post a picture of what you're trying to accomplish?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 12:14:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121729#M3189</guid>
      <dc:creator>JasonPike</dc:creator>
      <dc:date>2013-03-27T12:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: [C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121730#M3190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Well, you are right &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;After a lot of googling, I found out that I need "Linear Line of Sight", based on my DTED data. You can see the screenshot I posted earlier. How can I get linear Line of Sight between two points?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 12:28:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121730#M3190</guid>
      <dc:creator>oyleiste</dc:creator>
      <dc:date>2013-03-27T12:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: [C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121731#M3191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Well, you are right &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;BR /&gt;After a lot of googling, I found out that I need "Linear Line of Sight", based on my DTED data. You can see the screenshot I posted earlier. How can I get linear Line of Sight between two points?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Unfortunately, all I've been able to find is the Military Analyst extension, which I think is for ArcGlobe: &lt;/SPAN&gt;&lt;A href="http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?TopicName=Using_the_Linear_Line_of_Sight"&gt;http://webhelp.esri.com/arcgisdesktop/9.3/index.cfm?TopicName=Using_the_Linear_Line_of_Sight&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you have licenses for ArcGlobe and Military Analyst, I would use them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I haven't seen any API for calculating LLOS in ArcMap, but that doesn't mean it doesn't exist. I'm sure custom code can be written to do this, but I can't promise I'd have enough time to help you very much with writing it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 12:59:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121731#M3191</guid>
      <dc:creator>JasonPike</dc:creator>
      <dc:date>2013-03-27T12:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: [C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121732#M3192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Lines of sight can be calculated by calling ISurface.GetLineOfSight.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 13:09:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121732#M3192</guid>
      <dc:creator>NeilClemmons</dc:creator>
      <dc:date>2013-03-27T13:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: [C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121733#M3193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Lines of sight can be calculated by calling ISurface.GetLineOfSight.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;And there you have it :D.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This has some implementation details you might be interested in:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://forums.esri.com/Thread.asp?c=93&amp;amp;f=993&amp;amp;t=192554" rel="nofollow" target="_blank"&gt;http://forums.esri.com/Thread.asp?c=93&amp;amp;f=993&amp;amp;t=192554&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 13:14:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121733#M3193</guid>
      <dc:creator>JasonPike</dc:creator>
      <dc:date>2013-03-27T13:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: [C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121734#M3194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;And there you have it :D.&lt;BR /&gt;&lt;BR /&gt;This has some implementation details you might be interested in:&lt;BR /&gt;&lt;A href="http://forums.esri.com/Thread.asp?c=93&amp;amp;f=993&amp;amp;t=192554"&gt;http://forums.esri.com/Thread.asp?c=93&amp;amp;f=993&amp;amp;t=192554&lt;/A&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you very much Neil; for mentioning ISurface and thank you ScJpike; for your helpful link &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, I'm able to get linear line of sight of two points, as you see: [ATTACH=CONFIG]23004[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Well, is there any way to give observer's Z (elevation) and get line of sight of that point with given Z (not the elevation in DTED)? Imagine that I want to get LLOS of a helicopter that abviously it's elevation is greater that DTED's elevation of that point.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Or it's only possible with DTED elevations? Any idea?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you very much guys&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Sincerely&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 16:41:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121734#M3194</guid>
      <dc:creator>oyleiste</dc:creator>
      <dc:date>2013-03-27T16:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: [C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121735#M3195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thank you very much Neil; for mentioning ISurface and thank you ScJpike; for your helpful link &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Now, I'm able to get linear line of sight of two points, as you see: [ATTACH=CONFIG]23004[/ATTACH]&lt;BR /&gt;&lt;BR /&gt;Well, is there any way to give observer's Z (elevation) and get line of sight of that point with given Z (not the elevation in DTED)? Imagine that I want to get LLOS of a helicopter that abviously it's elevation is greater that DTED's elevation of that point.&lt;BR /&gt;Or it's only possible with DTED elevations? Any idea?&lt;BR /&gt;&lt;BR /&gt;Thank you very much guys&lt;BR /&gt;Sincerely&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Glad we could help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You should probably post a new thread for the new question.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 16:53:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121735#M3195</guid>
      <dc:creator>JasonPike</dc:creator>
      <dc:date>2013-03-27T16:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: [C#] How to create Line of Sight?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121736#M3196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jason, I appreciate your help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I started a new &lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/80837-Linear-Line-of-Sight-of-given-elevation-%28not-DTED-s-elevation%29"&gt;thread&lt;/A&gt;&lt;SPAN&gt;. I hope get my answer there.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 17:06:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/c-how-to-create-line-of-sight/m-p/121736#M3196</guid>
      <dc:creator>oyleiste</dc:creator>
      <dc:date>2013-03-27T17:06:33Z</dc:date>
    </item>
  </channel>
</rss>

