<?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: Programmatically get the data source from a lyr file pointing to an Esri GRID format raster uing Python 2.7 and ArcMap 10.5 in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110526#M8588</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dan. I think I've sorted.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;lyr &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'\\gis\test.lyr'&lt;/SPAN&gt;
flyr &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapping&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Layer&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyr&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; l &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapping&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListLayers&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;flyr&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; l&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;supports&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"DATASOURCE"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; l&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;isRasterLayer&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; l&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;dataSource&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;..returns the data source I need! &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 06:38:48 GMT</pubDate>
    <dc:creator>MatthewHowe</dc:creator>
    <dc:date>2021-12-11T06:38:48Z</dc:date>
    <item>
      <title>Programmatically get the data source from a lyr file pointing to an Esri GRID format raster uing Python 2.7 and ArcMap 10.5</title>
      <link>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110522#M8584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #242729; background-color: #f9f8f6;"&gt;I'm trying to get the data source from a bunch of lyr files pointing to various raster formats. Using the lyr.dataSource method on a feature layer after creating a layer object I can get the data source for TIFs fine but Esri GRID format rasters are seen as being directories. My goal is to re-path the lyr files to the same raster that has been copied to another location using the lyr.replaceDatasource method.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy lyr &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r”\\gis\test&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;lyr”
layer &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapping&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Layer&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyr&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; layer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;dataSource

Runtime error Traceback &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;most recent call last&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
File &lt;SPAN class="string token"&gt;"&amp;lt;string&amp;gt;"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &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;in&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;module&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt;
File &lt;SPAN class="string token"&gt;"c:\program files (x86)\arcgis\desktop10.5\arcpy\arcpy\arcobjects\_base.py"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; line &lt;SPAN class="number token"&gt;78&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; _get&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;attr_name&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; self&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;__class__&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;__name__&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
NameError&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; The attribute &lt;SPAN class="string token"&gt;'dataSource'&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;is&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;not&lt;/SPAN&gt; supported on this instance of Layer&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;/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;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN style="color: #242729; background-color: #f9f8f6;"&gt;Is there a clever way to get the full data source for the lyr file?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:38:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110522#M8584</guid>
      <dc:creator>MatthewHowe</dc:creator>
      <dc:date>2021-12-11T06:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically get the data source from a lyr file pointing to an Esri GRID format raster uing Python 2.7 and ArcMap 10.5</title>
      <link>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110523#M8585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/describe-object-properties.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/describe-object-properties.htm"&gt;Describe object properties—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/layer-properties.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/layer-properties.htm"&gt;http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/layer-properties.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;desc = arcpy.Describe("C:/Data/your_layer.lyr") &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/layer-properties.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/layer-properties.htm"&gt;Layer properties—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;desc.dataElement.catalogPath &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;if I remember correctly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2018 10:23:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110523#M8585</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-11-16T10:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically get the data source from a lyr file pointing to an Esri GRID format raster uing Python 2.7 and ArcMap 10.5</title>
      <link>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110524#M8586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dan. I just tested and it gives the path of the lyr file itself and not the path of the data it's pointing to.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2018 10:32:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110524#M8586</guid>
      <dc:creator>MatthewHowe</dc:creator>
      <dc:date>2018-11-16T10:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically get the data source from a lyr file pointing to an Esri GRID format raster uing Python 2.7 and ArcMap 10.5</title>
      <link>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110525#M8587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;keep digging&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/layer-properties.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-functions/layer-properties.htm"&gt;Layer properties—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE style="background-color: #ffffff; border-collapse: collapse; border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; border-spacing: 0px 0px; color: #4d4d4d; font-family: &amp;amp;quot; lucida grande&amp;amp;quot;,&amp;amp;quot;segoe ui&amp;amp;quot;,&amp;amp;quot;arial&amp;amp;quot;,sans-serif; font-size: 13.93px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 23.82px; margin-bottom: 20.9px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; width: 768px; word-spacing: 0px; border: 0.5px solid #dddddd;"&gt;&lt;TBODY style="background-color: transparent; border-collapse: collapse; border-image-outset: 0; border-image-repeat: stretch; border-image-slice: 100%; border-image-source: none; border-image-width: 1; border-spacing: 0px 0px; font-family: &amp;amp;quot; lucida grande&amp;amp;quot;,&amp;amp;quot;segoe ui&amp;amp;quot;,&amp;amp;quot;arial&amp;amp;quot;,sans-serif; font-size: 13.93px; line-height: 23.82px; margin-bottom: 0px; text-align: left; width: auto; border: 0px none #dddddd;"&gt;&lt;TR style="border-bottom-color: #dddddd; border-bottom-style: solid; border-bottom-width: 1px; text-align: left;"&gt;&lt;TD style="border-left-color: #dddddd; border-left-style: solid; border-left-width: 1px; border-right-color: #dddddd; border-right-style: solid; border-right-width: 1px; padding: 12px;"&gt;layer&lt;DIV&gt;(Read Only)&lt;/DIV&gt;&lt;/TD&gt;&lt;TD style="border-left-color: #dddddd; border-left-style: solid; border-left-width: 1px; border-right-color: #dddddd; border-right-style: solid; border-right-width: 1px; padding: 12px;"&gt;&lt;P style="font-size: 13.93px; line-height: 23.82px; margin-bottom: 0px; margin-top: 0px;"&gt;The &lt;SPAN style="font-family: &amp;amp;quot; consolas&amp;amp;quot;,&amp;amp;quot;andale mono&amp;amp;quot;,&amp;amp;quot;lucida console&amp;amp;quot;,&amp;amp;quot;monaco&amp;amp;quot;,&amp;amp;quot;courier new&amp;amp;quot;,courier,monospace; font-weight: 700;"&gt;Describe&lt;/SPAN&gt; object of the layer within a .lyr file.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2018 11:30:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110525#M8587</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-11-16T11:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically get the data source from a lyr file pointing to an Esri GRID format raster uing Python 2.7 and ArcMap 10.5</title>
      <link>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110526#M8588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dan. I think I've sorted.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;lyr &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; r&lt;SPAN class="string token"&gt;'\\gis\test.lyr'&lt;/SPAN&gt;
flyr &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapping&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Layer&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lyr&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; l &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapping&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ListLayers&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;flyr&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; l&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;supports&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"DATASOURCE"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; l&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;isRasterLayer&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt; l&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;dataSource&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;..returns the data source I need! &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:38:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110526#M8588</guid>
      <dc:creator>MatthewHowe</dc:creator>
      <dc:date>2021-12-11T06:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically get the data source from a lyr file pointing to an Esri GRID format raster uing Python 2.7 and ArcMap 10.5</title>
      <link>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110527#M8589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good... things are more or less the same in ArcGIS Pro's arcpy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2018 14:15:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110527#M8589</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2018-11-16T14:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically get the data source from a lyr file pointing to an Esri GRID format raster uing Python 2.7 and ArcMap 10.5</title>
      <link>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110528#M8590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please mark a response as Correct if it answers your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2018 15:33:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110528#M8590</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2018-11-16T15:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically get the data source from a lyr file pointing to an Esri GRID format raster uing Python 2.7 and ArcMap 10.5</title>
      <link>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110529#M8591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Man alive, give me chance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Nov 2018 15:59:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/programmatically-get-the-data-source-from-a-lyr/m-p/110529#M8591</guid>
      <dc:creator>MatthewHowe</dc:creator>
      <dc:date>2018-11-16T15:59:05Z</dc:date>
    </item>
  </channel>
</rss>

