<?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: Interactive viewshed with Raster coordinate system in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700566#M13918</link>
    <description>&lt;P&gt;Thanks for the suggestion. Tried modifying the code as suggested. But the issue still persist. Also re-project the sample tif(given below) into WGS84 and tried with that too. But facing the same issue.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.arcgis.com/home/item.html?id=aa97788593e34a32bcaae33947fdc271" target="_blank" rel="noopener"&gt;https://www.arcgis.com/home/item.html?id=aa97788593e34a32bcaae33947fdc271&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 07 May 2026 10:17:37 GMT</pubDate>
    <dc:creator>DharmaRajan</dc:creator>
    <dc:date>2026-05-07T10:17:37Z</dc:date>
    <item>
      <title>Interactive viewshed with Raster coordinate system</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700537#M13916</link>
      <description>&lt;P&gt;Hi, I have tried the sample code available in the below path. It is working fine for the given sample tif file which is in WebMercator coordinate system and also working fine with another tif file (which is also in WebMercator coordinate system). But when trying to use a tif file which is having WGS84 projection, it is not showing any viewshed result during execution. Please suggest.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/net/wpf/sample-code/show-interactive-viewshed-with-analysis-overlay/" target="_blank"&gt;https://developers.arcgis.com/net/wpf/sample-code/show-interactive-viewshed-with-analysis-overlay/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2026 06:51:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700537#M13916</guid>
      <dc:creator>DharmaRajan</dc:creator>
      <dc:date>2026-05-07T06:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive viewshed with Raster coordinate system</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700542#M13917</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try to change Map spatial reference to WGS84&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;            // Create a map
            MyMapView.Map = new Map(SpatialReferences.Wgs84)
            {
                // Set initial view point in WGS84
                //InitialViewpoint = new Viewpoint(55.610000, -5.200346, 100000)
            };&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 07 May 2026 07:53:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700542#M13917</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2026-05-07T07:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive viewshed with Raster coordinate system</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700566#M13918</link>
      <description>&lt;P&gt;Thanks for the suggestion. Tried modifying the code as suggested. But the issue still persist. Also re-project the sample tif(given below) into WGS84 and tried with that too. But facing the same issue.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.arcgis.com/home/item.html?id=aa97788593e34a32bcaae33947fdc271" target="_blank" rel="noopener"&gt;https://www.arcgis.com/home/item.html?id=aa97788593e34a32bcaae33947fdc271&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2026 10:17:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700566#M13918</guid>
      <dc:creator>DharmaRajan</dc:creator>
      <dc:date>2026-05-07T10:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive viewshed with Raster coordinate system</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700567#M13919</link>
      <description>&lt;P&gt;Have you updated _observerPosition and etc. which is related to spatial reference?&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2026 11:01:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700567#M13919</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2026-05-07T11:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive viewshed with Raster coordinate system</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700576#M13920</link>
      <description>&lt;P&gt;Yes. It is updated to use MapView's spatial-reference as given below.&amp;nbsp; Also the maximum-radius values is used as 0.01&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;_observerPosition = new MapPoint(x, y, _observerElevation, mapView.SpatialReference);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2026 12:20:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700576#M13920</guid>
      <dc:creator>DharmaRajan</dc:creator>
      <dc:date>2026-05-07T12:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive viewshed with Raster coordinate system</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700610#M13921</link>
      <description>&lt;P&gt;There a known &lt;A href="https://developers.arcgis.com/net/release-notes/release-notes-for-300-0/#known-issues" target="_self"&gt;limitation&lt;/A&gt; in that the ViewshedFunction only works with projected coordinate systems.&amp;nbsp; Passing in a WGS84 based ContinuousField will not work and this will be reported in the&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/api-reference/api/netwin/Esri.ArcGISRuntime/Esri.ArcGISRuntime.UI.GeoAnalysis.AnalysisViewState.html" target="_self"&gt;AnalysisViewState&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is however a workaround where you can project your WGS84 data into the coordinate system of your MapView.&amp;nbsp; Take a look at the &lt;A href="https://developers.arcgis.com/net/api-reference/api/netwin/Esri.ArcGISRuntime/Esri.ArcGISRuntime.Analysis.ContinuousField.CreateAsync.html" target="_self"&gt;ContinuousField.CreateAsync&lt;/A&gt; method.&lt;/P&gt;&lt;P&gt;When you display the viewshed results in a FieldAnalysis, you need to have created the results in the same spatial reference as your MapView.&lt;/P&gt;&lt;P&gt;We are working on functionality for projecting field data on the GPU for a future release.&lt;/P&gt;&lt;P&gt;Let me know if that helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2026 14:06:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/interactive-viewshed-with-raster-coordinate-system/m-p/1700610#M13921</guid>
      <dc:creator>MarkBaird</dc:creator>
      <dc:date>2026-05-07T14:06:45Z</dc:date>
    </item>
  </channel>
</rss>

