<?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: Field area calculation using arcade function is not giving me the right result. in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/1318126#M72024</link>
    <description>&lt;P&gt;Hi Xander,&lt;/P&gt;&lt;P&gt;I faced a similar situation. When I test this expression in &lt;SPAN&gt;Arcade Calculator&amp;nbsp;&lt;/SPAN&gt;"round(Area(geometry($feature), 'hectares'),2)" the result is "&lt;SPAN&gt;The input unit and the spatial reference unit are not of the same unit type i.e Linear vs.Angular".&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What Expression should I add in order to calculate the area?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 12 Aug 2023 09:52:16 GMT</pubDate>
    <dc:creator>dodeny</dc:creator>
    <dc:date>2023-08-12T09:52:16Z</dc:date>
    <item>
      <title>Field area calculation using arcade function is not giving me the right result.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71091#M2970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello GIS friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to run field calculation for area with arcade function, &lt;SPAN style="font-size: 11.0pt;"&gt;(round(Area($feature, 'acres'),1), but it is giving me only '0's all the way. The calculation runs with no error but the result is populated with '0' for all the rows. What am I doing wrong?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt;"&gt;Thank you friends and happy Friday!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jul 2019 15:53:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71091#M2970</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2019-07-12T15:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Field area calculation using arcade function is not giving me the right result.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71092#M2971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Abi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Happy Friday! The Arcade expression looks good. What is the type of your target field? We might want to use Double here. The area values will be rounded off to the nearest whole number if the field is Integer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keep me updated&amp;nbsp;&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Jul 2019 19:23:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71092#M2971</guid>
      <dc:creator>xlt208</dc:creator>
      <dc:date>2019-07-12T19:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: Field area calculation using arcade function is not giving me the right result.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71093#M2972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Abi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script looks correct, however there maybe a bug and the calculator is not realising that the geometry is needed for each feature, and so is not fetching it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could try:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;(round(Area(geometry($feature), 'acres'),1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;This extra big of logic may make the field calculator detect the use of feature geometry.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 13 Jul 2019 11:29:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71093#M2972</guid>
      <dc:creator>DavidBayer</dc:creator>
      <dc:date>2019-07-13T11:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: Field area calculation using arcade function is not giving me the right result.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71094#M2973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/148867"&gt;Abi Dhakal&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your formula and the one provided by&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/2658"&gt;David Bayer&lt;/A&gt;&amp;nbsp; are both correct in case you have projected data. If your data is using a geographic coordinate system like GCS WGS 1984, it is very likely that all records will return 0. You will have to project the data to avoid this behavior.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2019 16:46:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71094#M2973</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-07-15T16:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Field area calculation using arcade function is not giving me the right result.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71095#M2974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Lingtao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your suggestion. The field is double. I again ran the rule and checked the data and now it seems to run normally.&lt;/P&gt;&lt;P&gt;Thank you so much for your input.&lt;/P&gt;&lt;P&gt;I am just coming back from a meeting and had not had a chance to respond to your message for that I am sorry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2019 22:07:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71095#M2974</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2019-07-18T22:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Field area calculation using arcade function is not giving me the right result.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71096#M2975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for it is working now. I reran it and it looks good. I will save your arcade function for my future use as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2019 22:09:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71096#M2975</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2019-07-18T22:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: Field area calculation using arcade function is not giving me the right result.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71097#M2976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Xander. I have a projected coordinate system.&lt;/P&gt;&lt;P&gt;I do not know what I was doing wrong but it is working now. I really appreciate your input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2019 22:11:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71097#M2976</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2019-07-18T22:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Field area calculation using arcade function is not giving me the right result.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71098#M2977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Abi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for keeping me updated! It's great that things are getting back on track!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a lovely weekend,&lt;/P&gt;&lt;P&gt;Lingtao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jul 2019 11:45:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/71098#M2977</guid>
      <dc:creator>xlt208</dc:creator>
      <dc:date>2019-07-19T11:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Field area calculation using arcade function is not giving me the right result.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/1318126#M72024</link>
      <description>&lt;P&gt;Hi Xander,&lt;/P&gt;&lt;P&gt;I faced a similar situation. When I test this expression in &lt;SPAN&gt;Arcade Calculator&amp;nbsp;&lt;/SPAN&gt;"round(Area(geometry($feature), 'hectares'),2)" the result is "&lt;SPAN&gt;The input unit and the spatial reference unit are not of the same unit type i.e Linear vs.Angular".&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What Expression should I add in order to calculate the area?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Aug 2023 09:52:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/field-area-calculation-using-arcade-function-is/m-p/1318126#M72024</guid>
      <dc:creator>dodeny</dc:creator>
      <dc:date>2023-08-12T09:52:16Z</dc:date>
    </item>
  </channel>
</rss>

