<?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: Using Arcade to calculate xy geometry. in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135273#M5828</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;Unfortunately in Arcade you&amp;nbsp;do not have access to any projection library (yet?). For this in ArcGIS Pro, you can use Python to do the job. Using a projection in a field calculation on a feature basis, might not be very fast. Depending the number of features you have, you might first want to project the featureclass, calculate the X and Y of the geometry and than join back those fields to the original featureclass.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Nov 2019 13:02:07 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2019-11-25T13:02:07Z</dc:date>
    <item>
      <title>Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135269#M5824</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;Is there an arcade expression I can use to calculate xy values for a point feature? I am using this (return Round(Geometry($feature)x, 6) expression, but it is not doing the work. My field name is Point_X and Point_Y.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much,&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, 21 Nov 2019 18:36:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135269#M5824</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2019-11-21T18:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135270#M5825</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;This expression worked for me, but it is in meters. How can is change it to&amp;nbsp; WKID 3857 from within the expression?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&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, 21 Nov 2019 19:09:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135270#M5825</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2019-11-21T19:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135271#M5826</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;You are missing a dot "." in the expression, It should be:&lt;/P&gt;&lt;PRE class="language-javascript line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="token function"&gt;Round&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Geometry&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;X&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;6&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;... but if it is working for you, then I assume it is just a typo.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are mentioning&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;WKID 3857 (Web Mercator Auxiliary Sphere) and that you want it in meters. However, this is&amp;nbsp;a spatial reference that already return the coordinate in meters. If you want to obtain decimal degrees (WGS 1984) you can use a conversion to get that. See example here:&amp;nbsp;&lt;A _jive_internal="true" class="link-titled" href="https://community.esri.com/message/806053-re-latlong-unit-conversion-with-arcade?commentID=806053#comment-806053" title="https://community.esri.com/message/806053-re-latlong-unit-conversion-with-arcade?commentID=806053#comment-806053"&gt;https://community.esri.com/message/806053-re-latlong-unit-conversion-with-arcade?commentID=806053#comment-806053&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2019 15:48:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135271#M5826</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-11-22T15:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135272#M5827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry. I meant to say I have it in NAD_1983_UTM_Zone_16N and like you mentioned I want to obtain decimal degrees (WGS 1948). Would the same expression work with the OriginalShift and all? I'm actually trying to create an attribute rule for the xy fields to auto populate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once again I'm sorry for the confusion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Nov 2019 19:48:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135272#M5827</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2019-11-22T19:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135273#M5828</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;Unfortunately in Arcade you&amp;nbsp;do not have access to any projection library (yet?). For this in ArcGIS Pro, you can use Python to do the job. Using a projection in a field calculation on a feature basis, might not be very fast. Depending the number of features you have, you might first want to project the featureclass, calculate the X and Y of the geometry and than join back those fields to the original featureclass.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2019 13:02:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135273#M5828</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-11-25T13:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135274#M5829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Xander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Morning!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I am trying to do is create an attribute rule where by any point collected automatically also has its xy calculated in decimal degrees. Is that possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2019 14:03:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135274#M5829</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2019-11-25T14:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135275#M5830</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/people/AlabamaForest"&gt;AlabamaForest&lt;/A&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently, that is not possible if it requires a projection of coordinates.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2019 14:24:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135275#M5830</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2019-11-25T14:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135276#M5831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Xander!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2019 14:27:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/135276#M5831</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2019-11-25T14:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1041700#M39073</link>
      <description>&lt;P&gt;I do these attribute rules for a federated service&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Coordinates&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;//Latitude&lt;/P&gt;&lt;P&gt;var y = Centroid($feature).y&lt;/P&gt;&lt;P&gt;var originShift = 2.0 * PI * 6378137.0 / 2.0;&lt;/P&gt;&lt;P&gt;var lat = (y / originShift) * 180.0;&lt;/P&gt;&lt;P&gt;lat = 180.0 / PI * (2.0 * Atan( Exp( lat * PI / 180.0)) - PI / 2.0);&lt;/P&gt;&lt;P&gt;return lat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//Longitude&lt;/P&gt;&lt;P&gt;var x = Centroid($feature).x&lt;/P&gt;&lt;P&gt;var originShift = 2.0 * PI * 6378137.0 / 2.0;&lt;/P&gt;&lt;P&gt;var lon = (x / originShift) * 180.0;&lt;/P&gt;&lt;P&gt;return lon&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 19:44:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1041700#M39073</guid>
      <dc:creator>ScottKichman</dc:creator>
      <dc:date>2021-03-29T19:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1260938#M65862</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/471476"&gt;@Scott&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hey Scott,&lt;/P&gt;&lt;P&gt;I also have a federated service in UTM NAD83 Zone16. I would like to automatically populate x and y fields in decimal degrees as the points are dropped. Would it be possible for us to communicate with emails? Here is my email address: &lt;A href="mailto:abi.dhakal@forestry.alabama.gov" target="_blank"&gt;abi.dhakal@forestry.alabama.gov&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;BR /&gt;Abi&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 15:50:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1260938#M65862</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2023-02-23T15:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1261496#M65906</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/407589"&gt;@ScottKichman&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hey Scott,&lt;BR /&gt;&lt;BR /&gt;I tried your expression. The calculation for Latitude is coming out in decimal degrees which is what I want, but it is not converting right for my original service in UTM NAD83 Zone16. The calculation for Longitude is giving me in meters not in decimal degrees. Please see below the expression I used exactly copying what you had. If you know the modification for what I have to have I will greately apprecite it.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Coordinates&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;//Latitude&lt;/P&gt;&lt;P&gt;var y = Centroid($feature).y&lt;/P&gt;&lt;P&gt;var originShift = 2.0 * PI * 6378137.0 / 2.0;&lt;/P&gt;&lt;P&gt;var lat = (y / originShift) * 180.0;&lt;/P&gt;&lt;P&gt;lat = 180.0 / PI * (2.0 * Atan( Exp( lat * PI / 180.0)) - PI / 2.0);&lt;/P&gt;&lt;P&gt;return lat&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//Longitude&lt;/P&gt;&lt;P&gt;var x = Centroid($feature).x&lt;/P&gt;&lt;P&gt;var originShift = 2.0 * PI * 6378137.0 / 2.0;&lt;/P&gt;&lt;P&gt;var lon = (x / originShift) * 180.0;&lt;/P&gt;&lt;P&gt;return lon&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 17:26:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1261496#M65906</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2023-02-24T17:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1261675#M65928</link>
      <description>&lt;P&gt;Hi Abi!&lt;/P&gt;&lt;P&gt;I am not sure why its not working. I just tested it and it worked fine. I also used each individual component(lat) and (Lon) separately in a field calculation using the form builder in the (new) Map Viewer. I created a Latitude Field and a Longitude Field and then applied each section as a field calculation in the form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ScottKichman_0-1677273289169.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/63716iC5DC9076EF573AD9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ScottKichman_0-1677273289169.png" alt="ScottKichman_0-1677273289169.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 21:24:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1261675#M65928</guid>
      <dc:creator>ScottKichman</dc:creator>
      <dc:date>2023-02-24T21:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1262664#M66036</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/407589"&gt;@ScottKichman&lt;/a&gt;&amp;nbsp;I'll keep trying, Scott. Also, the difference in mine is I'm trying to convert UTM NAD83 Zone16 to WGS84.&lt;BR /&gt;Thank you for your support.&lt;BR /&gt;Abi&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 19:11:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1262664#M66036</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2023-02-28T19:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1262677#M66039</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/407589"&gt;@ScottKichman&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hey Scott,&lt;/P&gt;&lt;P&gt;Earlier, I didn't explain it to you properly. First of all, I'm trying to get Lat/Lon values in NAD 1983 UTM Zone 16N for a point feature and within the same attribute rule trying to convert that to WGS84.&lt;/P&gt;&lt;P&gt;The second one is I'm trying to get lat/Lon values in&amp;nbsp;USA Contiguous Albers Equal Area Conic USGS and then convert that to WGS84.&lt;/P&gt;&lt;P&gt;Thank you,&lt;BR /&gt;Abi&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 19:37:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1262677#M66039</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2023-02-28T19:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Using Arcade to calculate xy geometry.</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1262743#M66051</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1108"&gt;@XanderBakker&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm sorry Xander, please accept my apology for not clearly stating what I'm looking for.&lt;/P&gt;&lt;P&gt;1. I'm trying to get WGS84 values in decimal degrees for a feature service that is in NAD 1983 UTM Zone16N .&lt;/P&gt;&lt;P&gt;2. I'm also trying to&amp;nbsp;get WGS84 values in decimal degrees for a feature service that is in USA Contiguous Albers Equal Area Conic USGS.&lt;/P&gt;&lt;P&gt;So those are two different calculation for two toally different situations.&lt;/P&gt;&lt;P&gt;Thak you,&lt;BR /&gt;Abi&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 21:19:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/using-arcade-to-calculate-xy-geometry/m-p/1262743#M66051</guid>
      <dc:creator>AbiDhakal</dc:creator>
      <dc:date>2023-02-28T21:19:31Z</dc:date>
    </item>
  </channel>
</rss>

