<?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: Why is Search Cursor not honoring layer Selection? in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455848#M20028</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cnt is used on row 4 and 17, what is its purpose?&lt;/P&gt;&lt;P&gt;or is this a code formatting issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Apr 2019 17:31:57 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2019-04-04T17:31:57Z</dc:date>
    <item>
      <title>Why is Search Cursor not honoring layer Selection?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455847#M20027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In an ArcPro python script I have created a feature layers from a GDB feature class and made a selection.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;DIV style="color: #d4d4d4; background-color: #1e1e1e; font-weight: normal; font-size: 14px;"&gt;&lt;DIV&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;field_values &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
 &lt;SPAN class="comment token"&gt;# Field names are identical between the source and the target&lt;/SPAN&gt;
 row_cnt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; int&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetCount_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;selected_layer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;getOutput&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
 cnt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;
 &lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;selected_layer&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; update_fields&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; _cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; _row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; _cursor&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
       update_values &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; _row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
       _geo &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; _row&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
       &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; i &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; range&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;len&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;update_values&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
          fld &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; update_fields&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;i&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
          &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; fld &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; field_values&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
             field_values&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;fld&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;update_values&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;i&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
          &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
             field_values&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;fld&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;append&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;update_values&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;i&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
 
 &lt;SPAN class="comment token"&gt;# add this row to the excel table for visual comparison of source data to the final row&lt;/SPAN&gt;
       test_rows&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;append&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;update_values&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
 cnt &lt;SPAN class="operator token"&gt;+=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;The row count of the selected layer is 21, but when I increase the cnt variable by one each time through the cursor, the total number of lines is 167.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone experienced this issue with ArcPy for Pro?&amp;nbsp; Do layer selections in Pro not work with da.Cursors?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was thinking that a naming conflict between the feature class and the layer could be happening so I appended "_lyr" to the end of the layer name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:19:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455847#M20027</guid>
      <dc:creator>RichardHughes</dc:creator>
      <dc:date>2021-12-11T20:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Search Cursor not honoring layer Selection?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455848#M20028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cnt is used on row 4 and 17, what is its purpose?&lt;/P&gt;&lt;P&gt;or is this a code formatting issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Apr 2019 17:31:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455848#M20028</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2019-04-04T17:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Search Cursor not honoring layer Selection?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455849#M20029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How are you running this code?&amp;nbsp; In ArcGIS Pro, either the interactive Python window or script tool, or from outside the application?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And, what version of Pro are you running?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Apr 2019 17:39:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455849#M20029</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-04-04T17:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Search Cursor not honoring layer Selection?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455850#M20030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Same questions as the other guys, and I'll add:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When/how are you making the selection?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;but when I increase the cnt variable by one each time through the cursor,&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;You increase&amp;nbsp; cnt on line 17, but it's after the the cursor is done. (Same as Dan's question)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;I'm not real sure what line # 3 is doing for you....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Apr 2019 17:50:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455850#M20030</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2019-04-04T17:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Search Cursor not honoring layer Selection?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455851#M20031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So what I've come to realize is that the reference to the feature layer with selection must be made using the feature layer name.&amp;nbsp; It seems that in the past I've used the output from the MakeFeatureLayer_management function as input into other tools, but what actually should be passed is the name of the layer.&amp;nbsp; So I end up using layer.name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 May 2019 20:11:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455851#M20031</guid>
      <dc:creator>RichardHughes</dc:creator>
      <dc:date>2019-05-22T20:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Search Cursor not honoring layer Selection?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455852#M20032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm seeing this as new behavior in 2.3.&amp;nbsp; First observed from a Python Toolbox, then taken to the Python window to investigate when it no longer worked as expected.&amp;nbsp; Make a selection on the layer in the map.&amp;nbsp; Pass the layer name to SearchCursor.&amp;nbsp; All rows are processed, not just those selected.&lt;/P&gt;&lt;P&gt;For a layer with 3134 features and 72 are selected:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;i &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;with&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;da&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SearchCursor&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'Feature Service Name\\layer_name'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'ObjectID'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;as&lt;/SPAN&gt; cur&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; row &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; cur&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
        i &lt;SPAN class="operator token"&gt;+=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;
‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;i is&amp;nbsp;3134.&amp;nbsp; In this case the layer comes from a &lt;STRONG&gt;Portal Feature Service&lt;/STRONG&gt;.&amp;nbsp; I'll bet that's the source of the trouble.&amp;nbsp; Even tried a brand new project.&amp;nbsp; Same issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:19:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455852#M20032</guid>
      <dc:creator>JimHerberich</dc:creator>
      <dc:date>2021-12-11T20:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Search Cursor not honoring layer Selection?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455853#M20033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Likely related to a defect already logged:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;H3 class=""&gt;&lt;STRONG&gt;#BUG-000118589&lt;/STRONG&gt; Search Cursor does not recognize selection sets on table views or feature layers outside of ArcGIS Pro&lt;/H3&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I has been marked as Implemented in 2.4&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2019 22:19:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455853#M20033</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-06-11T22:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Search Cursor not honoring layer Selection?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455854#M20034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good to know.&amp;nbsp; That's the kind of bug that makes you crazy....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jun 2019 22:49:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455854#M20034</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2019-06-11T22:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Search Cursor not honoring layer Selection?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455855#M20035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wonder what does "outside of ArcGIS Pro" mean?&amp;nbsp; Everything I am doing is very much "inside" of ArcGIS Pro...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2019 12:42:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455855#M20035</guid>
      <dc:creator>JimHerberich</dc:creator>
      <dc:date>2019-06-13T12:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Search Cursor not honoring layer Selection?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455856#M20036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suspect 'Outside of ArcGIS Pro' refers to using cursors in a stand alone script, possibly calling it as a scheduled task etc..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2019 13:44:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455856#M20036</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2019-06-13T13:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Why is Search Cursor not honoring layer Selection?</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455857#M20037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Outside of ArcGIS Pro means executed in a separate process from the Pro application, either a standalone script or even a script tool run from within Pro.&amp;nbsp; If I ran code from within the interactive Python window, the selections would be honored, but that was about it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jun 2019 15:28:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/why-is-search-cursor-not-honoring-layer-selection/m-p/455857#M20037</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2019-06-13T15:28:04Z</dc:date>
    </item>
  </channel>
</rss>

