<?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 How to find polygons inside specific boundary? in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-find-polygons-inside-specific-boundary/m-p/1363880#M38090</link>
    <description>&lt;P&gt;Hello, there is a map service service with thousands of parcels. I need to find polygons in a specific boundary by sending a query to this service. How can I do this using rest api? Actually, boundary is a Grid service included in this service. I need to find polygons in any grid.&lt;/P&gt;</description>
    <pubDate>Fri, 22 Dec 2023 07:35:05 GMT</pubDate>
    <dc:creator>aydemiremrah</dc:creator>
    <dc:date>2023-12-22T07:35:05Z</dc:date>
    <item>
      <title>How to find polygons inside specific boundary?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-find-polygons-inside-specific-boundary/m-p/1363880#M38090</link>
      <description>&lt;P&gt;Hello, there is a map service service with thousands of parcels. I need to find polygons in a specific boundary by sending a query to this service. How can I do this using rest api? Actually, boundary is a Grid service included in this service. I need to find polygons in any grid.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2023 07:35:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-find-polygons-inside-specific-boundary/m-p/1363880#M38090</guid>
      <dc:creator>aydemiremrah</dc:creator>
      <dc:date>2023-12-22T07:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to find polygons inside specific boundary?</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-find-polygons-inside-specific-boundary/m-p/1364118#M38100</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/741290"&gt;@aydemiremrah&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is what you can do:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;make a query call to your boundary layer to get the geometry of the specific grid/boundary that you want use to find all parcels.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;use the geometry returned from the above request, in another query call that you will make to your parcel layer. This time you will use that geometry as the search geometry. And this will return all parcels that are within or interested by the grid/boundary depending on what &lt;STRONG&gt;spatialRel&lt;/STRONG&gt; operator that you use&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;finding a county named Jackson from Missouri.&amp;nbsp;&lt;BR /&gt;&lt;A href="https://sampleserver6.arcgisonline.com/arcgis/rest/services/USA/MapServer/3/query?where=NAME+%3D+%27Jackson%27+and+STATE_NAME+%3D+%27Missouri%27&amp;amp;returnGeometry=true&amp;amp;f=json" target="_blank"&gt;https://sampleserver6.arcgisonline.com/arcgis/rest/services/USA/MapServer/3/query?where=NAME+%3D+%27Jackson%27+and+STATE_NAME+%3D+%27Missouri%27&amp;amp;returnGeometry=true&amp;amp;f=json&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;using the geometry of Jackson county to find all cities (point features) that are &lt;STRONG&gt;within&lt;/STRONG&gt; Jackson county&lt;BR /&gt;&lt;A href="https://sampleserver6.arcgisonline.com/arcgis/rest/services/USA/MapServer/0/query?geometry=%7B%22rings%22%3A%5B%5B%5B-94.612469602999965%2C38.837108773000068%5D%2C%5B-94.60928129499996%2C39.044667524000033%5D%2C%5B-94.608136705999982%2C39.112800837000066%5D%2C%5B-94.576633916999981%2C39.12089934100004%5D%2C%5B-94.516390522999984%2C39.151489303000062%5D%2C%5B-94.48561304499998%2C39.144558036000035%5D%2C%5B-94.452859267999941%2C39.125896975000046%5D%2C%5B-94.411826843999961%2C39.160206191000043%5D%2C%5B-94.41540493499997%2C39.195464579000031%5D%2C%5B-94.399123647999943%2C39.19202027800003%5D%2C%5B-94.369963236999979%2C39.165027896000026%5D%2C%5B-94.299129895999954%2C39.23495104400007%5D%2C%5B-94.252497783999956%2C39.231292890000077%5D%2C%5B-94.218165390999957%2C39.206281021000052%5D%2C%5B-94.19375873599995%2C39.214921533000052%5D%2C%5B-94.174196962999986%2C39.206579678000026%5D%2C%5B-94.187052383999969%2C39.184766652000064%5D%2C%5B-94.149210375999985%2C39.178473257000064%5D%2C%5B-94.11246713099996%2C39.142631251000068%5D%2C%5B-94.120424471999968%2C38.913174143000049%5D%2C%5B-94.125848230999964%2C38.830838555000071%5D%2C%5B-94.612469602999965%2C38.837108773000068%5D%5D%5D%7D%7D%5D%7D&amp;amp;geometryType=esriGeometryPolygon&amp;amp;inSR=&amp;amp;spatialRel=esriSpatialRelContains&amp;amp;outFields=*&amp;amp;returnGeometry=true&amp;amp;&amp;amp;f=html" target="_blank"&gt;https://sampleserver6.arcgisonline.com/arcgis/rest/services/USA/MapServer/0/query?geometry=%7B%22rings%22%3A%5B%5B%5B-94.612469602999965%2C38.837108773000068%5D%2C%5B-94.60928129499996%2C39.044667524000033%5D%2C%5B-94.608136705999982%2C39.112800837000066%5D%2C%5B-94.576633916999981%2C39.12089934100004%5D%2C%5B-94.516390522999984%2C39.151489303000062%5D%2C%5B-94.48561304499998%2C39.144558036000035%5D%2C%5B-94.452859267999941%2C39.125896975000046%5D%2C%5B-94.411826843999961%2C39.160206191000043%5D%2C%5B-94.41540493499997%2C39.195464579000031%5D%2C%5B-94.399123647999943%2C39.19202027800003%5D%2C%5B-94.369963236999979%2C39.165027896000026%5D%2C%5B-94.299129895999954%2C39.23495104400007%5D%2C%5B-94.252497783999956%2C39.231292890000077%5D%2C%5B-94.218165390999957%2C39.206281021000052%5D%2C%5B-94.19375873599995%2C39.214921533000052%5D%2C%5B-94.174196962999986%2C39.206579678000026%5D%2C%5B-94.187052383999969%2C39.184766652000064%5D%2C%5B-94.149210375999985%2C39.178473257000064%5D%2C%5B-94.11246713099996%2C39.142631251000068%5D%2C%5B-94.120424471999968%2C38.913174143000049%5D%2C%5B-94.125848230999964%2C38.830838555000071%5D%2C%5B-94.612469602999965%2C38.837108773000068%5D%5D%5D%7D%7D%5D%7D&amp;amp;geometryType=esriGeometryPolygon&amp;amp;inSR=&amp;amp;spatialRel=esriSpatialRelContains&amp;amp;outFields=*&amp;amp;returnGeometry=true&amp;amp;&amp;amp;f=html&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;returned results of the final query looks like this:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="TanuHoque_0-1703284816002.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/89902iC9F42D399323679A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="TanuHoque_0-1703284816002.png" alt="TanuHoque_0-1703284816002.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;hope this helps.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Dec 2023 22:40:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-find-polygons-inside-specific-boundary/m-p/1364118#M38100</guid>
      <dc:creator>TanuHoque</dc:creator>
      <dc:date>2023-12-22T22:40:30Z</dc:date>
    </item>
  </channel>
</rss>

