<?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: adding layers in a standalone script in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112564#M8774</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, I do in fact have 'CURRENT' in my master script, this was just a test script. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My script bombs out now on the move layer function, Assertion error. namely that it can't find the layer in the dataframe. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll try saving prior to the move and see if that helps. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;just ran a test which included mxd.save() prior to the move and received an error List Index Out Of range, which I assume means ListLayers didn't find the layer in question.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Apr 2013 21:42:23 GMT</pubDate>
    <dc:creator>JonPedder</dc:creator>
    <dc:date>2013-04-16T21:42:23Z</dc:date>
    <item>
      <title>adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112562#M8772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Has anyone successfully accomplished this? Seriously I???m not being sarcastic. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What I presumed to be a very simple task has me flummoxed. Simply adding a featureclass as a layer to an mxd.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;All commands work perfectly when run in a geoprocessing python session, yet they fail when running in a standalone script. Is it maybe something in my environment settings? I???ve tried to cover them all here. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;# Set enviroment arcpy.env.workspace arcpy.env.scratchGDB arcpy.env.scratchFolder&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I???ve tried writing the layers to disk then reading them in, adding with AddLayer and AddtoGroup, insertLAyer etc. I can get a layer to add when pulling from disk yet it won???t display in the TOC (you can see it's there if I iterate the layers). I have RefreshTOC and RefrenceActiveView&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here???s a test script I???ve been playing with.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;# Add layers to the map mxd = arcpy.mapping.MapDocument(r"C:\Users\mymap.mxd")&amp;nbsp; # List data frame and layers frame = arcpy.mapping.ListDataFrames(mxd,'Dataframe')[0] refFeatureLayer = arcpy.mapping.ListLayers(mxd,'*New_Layer*',frame)[0]&amp;nbsp; # create a new layer from an existing featureclass travel_route_1 = "Travel_Routes" tempLayer = arcpy.MakeFeatureLayer_management(travel_route_1,'my test layer')&amp;nbsp; # Save layer to disk arcpy.SaveToLayerFile_management (tempLayer, r'C:\Users\test layer.lyr')&amp;nbsp; # List data frame and layers - just to refresh the list, shouldn't need to do this. frame = arcpy.mapping.ListDataFrames(mxd,'Dataframe')[0] refFeatureLayer = arcpy.mapping.ListLayers(mxd,'*test*',frame)[0]&amp;nbsp; # Get the layer addLayer = arcpy.mapping.Layer(r'C:\Users\test layer.lyr')&amp;nbsp; # Add the layer to the dataframe arcpy.mapping.AddLayer(frame, addLayer, "BOTTOM")&amp;nbsp; # List data frame and layers - just to refresh the list, shouldn't need to do this. frame = arcpy.mapping.ListDataFrames(mxd,'Dataframe')[0] refFeatureLayer = arcpy.mapping.ListLayers(mxd,'*test*',frame)[0]&amp;nbsp; # Finally move the layer movelayer = arcpy.mapping.ListLayers(mxd,'*my*',frame)[0] arcpy.mapping.MoveLayer(frame,refFeatureLayer,movelayer,"AFTER")&amp;nbsp; arcpy.RefreshTOC() arcpy.RefreshActiveView()&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Apr 2013 02:27:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112562#M8772</guid>
      <dc:creator>JonPedder</dc:creator>
      <dc:date>2013-04-16T02:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112563#M8773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you are referencing the MXD via path (e.g., r"C:\Temp\mymap.mxd") and then making changes, you must save your changes at the end of the script.&amp;nbsp; Use mxd.save() or mxd.saveACopy(path).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This script probably works if you replace the MXD path with the keyword "current".&amp;nbsp; I can see that you have refresh functions at the end.&amp;nbsp; The refresh functions are needed if using current but don't help if working against an MXD on disk.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Apr 2013 14:50:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112563#M8773</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2013-04-16T14:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112564#M8774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, I do in fact have 'CURRENT' in my master script, this was just a test script. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My script bombs out now on the move layer function, Assertion error. namely that it can't find the layer in the dataframe. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'll try saving prior to the move and see if that helps. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;just ran a test which included mxd.save() prior to the move and received an error List Index Out Of range, which I assume means ListLayers didn't find the layer in question.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Apr 2013 21:42:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112564#M8774</guid>
      <dc:creator>JonPedder</dc:creator>
      <dc:date>2013-04-16T21:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112565#M8775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jeff, I did manage to save a layer to disk using the scratch folder as the location, figured I could just load it and be done. Ah, not so fast!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can also read from disk and using AddLayer it 'appears' to work, meaning I don't get an error. If I list the layers using the following it shows in the layer list. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;gt;&amp;gt;&amp;gt; df = arcpy.mapping.ListDataFrames(mxd, "MapSAR")[0]
&amp;gt;&amp;gt;&amp;gt; for d in df:
...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print d
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can see that the layer was added, but looking at the actual mxd the layer isn't shown there, even after RefreshTOC and RefreshView. I manually saved the mxd (selecting save from the file menu), close and reopen, the layer isn't listed. If I rerun the frame iterator the 'hidden' layer is also gone. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried this from a fresh mxd thinking a corruption issue, but same thing. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Running 10.1 SP1&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Glad to send you the entire script, db etc. if that would help?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jon&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 06:43:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112565#M8775</guid>
      <dc:creator>JonPedder</dc:creator>
      <dc:date>2021-12-11T06:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112566#M8776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you send me a map package and your script to &lt;/SPAN&gt;&lt;A href="mailto:jbarrette@esri.com"&gt;jbarrette@esri.com&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jeff&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2013 14:20:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112566#M8776</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2013-04-17T14:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112567#M8777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This likely isn't one I'd have figured out myself, thanks VERY much Jeff for helping debug this. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;From Jeff Barrette&lt;BR /&gt;&lt;BR /&gt;The result of MakeFeatureLayer is a string object, not a layer object.&amp;nbsp; AddLayer requires a layer object, resultlayer.getOutput(0) - this returns the layer object.&lt;BR /&gt;&lt;BR /&gt;This is one of the subtle differences between GP/arcpy (released at 9x) and arcpy.mapping (released at 10x).&amp;nbsp; Many arcpy functions return strings and arcpy functions translate them appropriately.&amp;nbsp; Arcpy.mapping is more object oriented in design and requires more than just string objects.&lt;BR /&gt;&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's the code that worked, note the addition of getOutput(0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt; frame = arcpy.mapping.ListDataFrames(mxd,'Dataframe')[0] tempLayer = arcpy.MakeFeatureLayer_management(dissolved_feature,'{0}\Viewshed_{1}'.format(scratchfdr,timestamp)) arcpy.mapping.AddLayer(frame, tempLayer.getOutput(0), "AUTO_ARRANGE") &lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;SPAN&gt;Click &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002z0000000n000000" rel="nofollow" target="_blank"&gt;here &lt;/A&gt;&lt;SPAN&gt;for more information on using getOutput(0)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope this helps others with the same issue&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jon&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2013 20:00:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112567#M8777</guid>
      <dc:creator>JonPedder</dc:creator>
      <dc:date>2013-04-19T20:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112568#M8778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I realize this is an old thread, but do either of you have a suggestion or fix for when the above script recommended by &lt;A href="https://community.esri.com/migrated-users/3200"&gt;Jeff Barrette&lt;/A&gt; works at the command line but not when run within a tool? I started a new thread &lt;A _jive_internal="true" href="https://community.esri.com/thread/117832"&gt;here&lt;/A&gt; for reference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2014 22:17:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112568#M8778</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2014-11-28T22:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112569#M8779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Madeleine - are you running the tool in the background? If you are doing things to the map document you need to always check the script property "always run in foreground" or turn background processing off.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Nov 2014 05:13:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112569#M8779</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2014-11-30T05:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112570#M8780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Curtis -- yes, I've checked the "Always run in foreground" box within the general properties tab for the tool. I should mention that the tool works when the the shapefile is constructed within the python code (from a numpy array) and then added to the map, but it doesn't work when the shapefile already exists in a folder and is then added to the map (see errors from the tool &lt;A _jive_internal="true" href="https://community.esri.com/thread/117832"&gt;here&lt;/A&gt;).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Nov 2014 19:42:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112570#M8780</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2014-11-30T19:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112571#M8781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Madeline,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For some reason I can’t respond to the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don’t get the error  when I run the following from a script tool within ArcMap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import arcpy&lt;/P&gt;&lt;P&gt;precipLayer = arcpy.MakeFeatureLayer_management(r"D:\Active\ArcPY\10x\ScrumWorks\Data\Drive_A\basin_utmcopy.shp")&lt;/P&gt;&lt;P&gt;mxd = arcpy.mapping.MapDocument("CURRENT")&lt;/P&gt;&lt;P&gt;df = arcpy.mapping.ListDataFrames(mxd)[0]&lt;/P&gt;&lt;P&gt;arcpy.mapping.AddLayer(df, precipLayer.getOutput(0), "TOP")   #NO ERROR&lt;/P&gt;&lt;P&gt;#arcpy.mapping.AddLayer(df, precipLayer, "TOP")               #GOT ERROR BUT EXPECTED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What version of the software are you using?&lt;/P&gt;&lt;P&gt;Have you tried using a layer file that references the shapefile on disk?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace:&lt;/P&gt;&lt;P&gt;precipLayer = arcpy.MakeFeatureLayer_management(r"D:\Active\ArcPY\10x\ScrumWorks\Data\Drive_A\basin_utmcopy.shp")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with:&lt;/P&gt;&lt;P&gt;precipLayer = arcpy.mapping.Layer(r"D:\Active\ArcPY\10x\ScrumWorks\Data\Drive_A\basin_utmcopy.shp")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2014 16:20:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112571#M8781</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2014-12-01T16:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112572#M8782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much for getting back to me. I've been running into dead ends on&lt;/P&gt;&lt;P&gt;this. I'm running 10.2.2 so it's my understanding that I shouldn't have the&lt;/P&gt;&lt;P&gt;AddLayer bug (is that correct?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your suggestion worked! I couldn't be happier or more confused as&lt;/P&gt;&lt;P&gt;to why this works but the other (ESRI resources suggested) way doesn't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's what I ended up running successfully:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;precipLayer = arcpy.mapping.Layer(r"D:\Active\ArcPY\10x\ScrumWorks\Data\Drive_A\basin_utmcopy.shp")&lt;/P&gt;&lt;P&gt;mxd = arcpy.mapping.MapDocument("CURRENT")&lt;/P&gt;&lt;P&gt;df = arcpy.mapping.ListDataFrames(mxd)[0]&lt;/P&gt;&lt;P&gt;#arcpy.mapping.AddLayer(df, precipLayer.getOutput(0), "TOP")&amp;nbsp; # GOT ERROR: getOutput(0) doesn't exist&lt;/P&gt;&lt;P&gt;arcpy.mapping.AddLayer(df, precipLayer, "TOP")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll update the other post with your suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;P&gt;Madeline&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2014 19:15:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112572#M8782</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2014-12-01T19:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: adding layers in a standalone script</title>
      <link>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112573#M8783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I’m glad my suggestion helped.  I can’t explain why you are seeing what you are seeing.  One difference is that I’m on 10.3 (not released yet) but I’m not aware of changes.  This issue may be a core arcpy issue and not specific to arcpy.mapping (my area of development).  I’ll forward this onto someone on that team to see if there was a known issue that was addressed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, I hope you can continue forward,&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2014 19:45:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/adding-layers-in-a-standalone-script/m-p/112573#M8783</guid>
      <dc:creator>JeffBarrette</dc:creator>
      <dc:date>2014-12-01T19:45:35Z</dc:date>
    </item>
  </channel>
</rss>

