<?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: Arcade negative Buffer returns null in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1562561#M90561</link>
    <description>&lt;P&gt;not sure about arcade but most polygon geometry usually has a duplicate first and last point, what you have given could be interpreted as a polyline&lt;/P&gt;</description>
    <pubDate>Tue, 26 Nov 2024 10:43:25 GMT</pubDate>
    <dc:creator>DanPatterson</dc:creator>
    <dc:date>2024-11-26T10:43:25Z</dc:date>
    <item>
      <title>Arcade negative Buffer returns null</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1562525#M90558</link>
      <description>&lt;P&gt;I am trying to create a negative Buffer in Arcade to query features inside, as it was possible in older versions (2022). When I execute it noch for example in the Arcade Playground "null" is returned instead of a shrink polygon.&lt;/P&gt;&lt;P&gt;To reproduce open the Arcade Playground&amp;nbsp;&lt;A href="https://developers.arcgis.com/arcade/playground/" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/arcade/playground/&lt;/A&gt;&amp;nbsp; and insert&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;var poly = Polygon(
  {
    rings: [
      [
        Point(
          {
            x: -97.06138,
            y: 32.837,
            z: 100,
            hasZ: true,
            spatialReference: { wkid: 3857 }
          }
        ),
        Point(
          {
            x: -97.06133,
            y: 32.836,
            z: 50,
            hasZ: true,
            spatialReference: { wkid: 3857 }
          }
        ),
        Point(
          {
            x: -97.06124,
            y: 32.834,
            z: 20,
            hasZ: true,
            spatialReference: { wkid: 3857 }
          }
        ),
        Point(
          {
            x: -97.06127,
            y: 32.832,
            z: 0,
            hasZ: true,
            spatialReference: { wkid: 3857 }
          }
        )
      ]
    ],
    hasZ: true,
    spatialReference: { wkid: 3857 }
  }
);

Buffer(poly, -10) //return null
//BufferGeodetic(poly, -10) //return null&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Is this a bug or intention?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2024 07:09:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1562525#M90558</guid>
      <dc:creator>Jan62</dc:creator>
      <dc:date>2024-11-26T07:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade negative Buffer returns null</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1562561#M90561</link>
      <description>&lt;P&gt;not sure about arcade but most polygon geometry usually has a duplicate first and last point, what you have given could be interpreted as a polyline&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2024 10:43:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1562561#M90561</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2024-11-26T10:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade negative Buffer returns null</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1562574#M90564</link>
      <description>&lt;P&gt;Yes but it's the example polygon of the Arcade Playground. The result is also null if i add the first point at the end.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2024 11:16:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1562574#M90564</guid>
      <dc:creator>Jan62</dc:creator>
      <dc:date>2024-11-26T11:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade negative Buffer returns null</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1562634#M90568</link>
      <description>&lt;P&gt;then the buffer size is too large relative to the size of the polygon (eg. bigger than its extent)&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2024 13:53:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1562634#M90568</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2024-11-26T13:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade negative Buffer returns null</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1563602#M90685</link>
      <description>&lt;P&gt;Yeah you are right the polygon was to small. (why is the default playground polygon so small?). This was also the error for the "Attribute Rule" I wanted to save. If the buffer is -1 (meters), the verification of the arcade statement fails. Under -0.3 the expression is valid.&lt;/P&gt;&lt;P&gt;Wich polygon is used for the statement verification in attribute rules in Pro 3.3?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 08:01:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1563602#M90685</guid>
      <dc:creator>Jan62</dc:creator>
      <dc:date>2024-12-02T08:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade negative Buffer returns null</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1563620#M90687</link>
      <description>&lt;P&gt;It would be prudent to calculate the poly extent in planar coordinates prior to trying a negative buffer.&amp;nbsp; At least the extent would give you the ability to assess other values like perimeter, area and other possible measures.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 10:10:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-negative-buffer-returns-null/m-p/1563620#M90687</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2024-12-02T10:10:06Z</dc:date>
    </item>
  </channel>
</rss>

