<?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: Point in shapefile in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/point-in-shapefile/m-p/1056226#M10072</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/482448"&gt;@JohnAem&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Look at the Esri.ArcGISRutime.Geometry.GeometryEngine.Within Method for some guidance on the classic point-in-polygon question. Here the URL in the WPF Library Reference API documentation:&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/wpf/api-reference/html/M_Esri_ArcGISRuntime_Geometry_GeometryEngine_Within.htm" target="_blank"&gt;https://developers.arcgis.com/net/wpf/api-reference/html/M_Esri_ArcGISRuntime_Geometry_GeometryEngine_Within.htm&lt;/A&gt;.&amp;nbsp;It has a C# code example you can learn from.&lt;/P&gt;&lt;P&gt;-don&lt;/P&gt;</description>
    <pubDate>Mon, 10 May 2021 15:17:48 GMT</pubDate>
    <dc:creator>DonKemlage</dc:creator>
    <dc:date>2021-05-10T15:17:48Z</dc:date>
    <item>
      <title>Point in shapefile</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/point-in-shapefile/m-p/1056008#M10071</link>
      <description>&lt;P&gt;I have two files.&amp;nbsp; One has latitude and longitude coordinates.&amp;nbsp; The second is a shapefile made from some census districts.&amp;nbsp; I want to be able to check if any of the listed points are within the boundaries of the shapefile.&amp;nbsp;I've searched the forum and the web but came up short.&amp;nbsp; Is there an example of this in c# or vb.net?&lt;/P&gt;</description>
      <pubDate>Sun, 09 May 2021 01:49:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/point-in-shapefile/m-p/1056008#M10071</guid>
      <dc:creator>JohnAem</dc:creator>
      <dc:date>2021-05-09T01:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Point in shapefile</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/point-in-shapefile/m-p/1056226#M10072</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/482448"&gt;@JohnAem&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Look at the Esri.ArcGISRutime.Geometry.GeometryEngine.Within Method for some guidance on the classic point-in-polygon question. Here the URL in the WPF Library Reference API documentation:&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/wpf/api-reference/html/M_Esri_ArcGISRuntime_Geometry_GeometryEngine_Within.htm" target="_blank"&gt;https://developers.arcgis.com/net/wpf/api-reference/html/M_Esri_ArcGISRuntime_Geometry_GeometryEngine_Within.htm&lt;/A&gt;.&amp;nbsp;It has a C# code example you can learn from.&lt;/P&gt;&lt;P&gt;-don&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 15:17:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/point-in-shapefile/m-p/1056226#M10072</guid>
      <dc:creator>DonKemlage</dc:creator>
      <dc:date>2021-05-10T15:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Point in shapefile</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/point-in-shapefile/m-p/1058989#M10092</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;To avoid querying both tables and working with the result sets, you could also try querying the point shapefile feature table, creating a multipoint geometry from the results and passing that as the input geometry for a query on the polygon shapefile feature table.&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2021 15:28:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/point-in-shapefile/m-p/1058989#M10092</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2021-05-18T15:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Point in shapefile</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/point-in-shapefile/m-p/1059131#M10103</link>
      <description>&lt;P&gt;Don,&lt;/P&gt;&lt;P&gt;&amp;nbsp;I looked at the within method.&amp;nbsp; It's exactly the type of thing I would need.&amp;nbsp; However, I haven't been able to figure out how to get an object with that method from a shape file.&amp;nbsp; As a side note, the coordinates are now in an MS SQL database.&amp;nbsp; I don't know if it would be faster or better to put them in another GIS style format such as a shapefile or such.&amp;nbsp; We currently have 3.2 million coordinates with about 10-50k being made per day.&lt;/P&gt;&lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;If I am reading this correctly you are suggesting I create a shapefile with just the points (3.2M of them).&amp;nbsp; Then put them into a table inside the shapefile.&amp;nbsp; At this point I'm rather lost since I don't know which objects I would or could use.&amp;nbsp; I'm very lost as to how to break down a shapefile into it's geometry for example.&amp;nbsp; Would anyone be so kind as to write a quick example, pseudo code, or just the list of objects I should be looking in to?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for all the help so far.&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2021 19:50:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/point-in-shapefile/m-p/1059131#M10103</guid>
      <dc:creator>JohnAem</dc:creator>
      <dc:date>2021-05-18T19:50:37Z</dc:date>
    </item>
  </channel>
</rss>

