<?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: ArcGIS Help ListBookmarks example 3 not working in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585487#M45970</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I didn't really modify the code. I just set the output feature class to a shapefile instead of a feature class in a FGDB.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os

# The map with the bookmarks
mxd = arcpy.mapping.MapDocument(r"C:\Project\Counties.mxd")

# The output feature class to be created -
# This feature class will store the bookmarks as features
outFC = r'C:\Project\Counties_Bookmarks.shp'

# A template feature class that contains the attribute schema
# Including a "Name" field to store the bookmark name
template = r'C:\Project\Counties.gdb\Template'

if arcpy.Exists(outFC):
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Delete_management(outFC)
arcpy.CreateFeatureclass_management(os.path.dirname(outFC),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.path.basename(outFC), 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "POLYGON", template, 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spatial_reference=template)

cur = arcpy.da.InsertCursor(outFC, ["SHAPE@", "Name"])
array = arcpy.Array()
for bkmk in arcpy.mapping.ListBookmarks(mxd):
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMin, bkmk.extent.YMin))
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMin, bkmk.extent.YMax))
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMax, bkmk.extent.YMax))
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMax, bkmk.extent.YMin))
&amp;nbsp;&amp;nbsp;&amp;nbsp; # To close the polygon, add the first point again
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMin, bkmk.extent.YMin))
&amp;nbsp;&amp;nbsp;&amp;nbsp; cur.insertRow([arcpy.Polygon(array), bkmk.name])
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.removeAll()&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 01:10:26 GMT</pubDate>
    <dc:creator>MatthewStarry</dc:creator>
    <dc:date>2021-12-12T01:10:26Z</dc:date>
    <item>
      <title>ArcGIS Help ListBookmarks example 3 not working</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585483#M45966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Please refer to the ArcGIS Help document for the &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/main/10.2/?ESRISessionID=0sWwh9xxFykA9S5H9t82IBppN9_6IV36nIpuMd9imhFa1-OxdAyQl-GutxFR9bUQWcabfCc=#/ListBookmarks/00s300000060000000/" rel="nofollow" target="_blank"&gt;ListBookmarks (arcpy.mapping)&lt;/A&gt;&lt;SPAN&gt; function, example 3.&amp;nbsp; Example 3 shows code that is supposed to convert each bookmark in a map document to a feature.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I cannot get this code to output polygons of bookmark extents in a mxd. I set the output feature class.&amp;nbsp; I created a template feature class with a "Name" attribute (text, 50) with the same spatial reference as the dataframe of the mxd that contains the bookmarks. The code runs without error and creates the output feature class, however, it does not contain any records.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does anyone have any ideas on how to get this code to work? I'm using ArcGIS 10.2.1.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import arcpy, os&amp;nbsp; # The map with the bookmarks mxd = arcpy.mapping.MapDocument(r"C:\Project\Counties.mxd")&amp;nbsp; # The output feature class to be created - # This feature class will store the bookmarks as features outFC = r'C:\Project\Counties.gdb\Bookmarks'&amp;nbsp; # A template feature class that contains the attribute schema # Including a "Name" field to store the bookmark name template = r'C:\Project\Counties.gdb\Template'&amp;nbsp; if arcpy.Exists(outFC): &amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Delete_management(outFC) arcpy.CreateFeatureclass_management(os.path.dirname(outFC), &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.path.basename(outFC),&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "POLYGON", template,&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spatial_reference=template)&amp;nbsp; cur = arcpy.da.InsertCursor(outFC, ["SHAPE@", "Name"]) array = arcpy.Array() for bkmk in arcpy.mapping.ListBookmarks(mxd): &amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMin, bkmk.extent.YMin)) &amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMin, bkmk.extent.YMax)) &amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMax, bkmk.extent.YMax)) &amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMax, bkmk.extent.YMin)) &amp;nbsp;&amp;nbsp;&amp;nbsp; # To close the polygon, add the first point again &amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMin, bkmk.extent.YMin)) &amp;nbsp;&amp;nbsp;&amp;nbsp; cur.insertRow([arcpy.Polygon(array), bkmk.name]) &amp;nbsp;&amp;nbsp;&amp;nbsp; array.removeAll()&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 14:16:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585483#M45966</guid>
      <dc:creator>MatthewStarry</dc:creator>
      <dc:date>2014-03-19T14:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Help ListBookmarks example 3 not working</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585484#M45967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I set the output to a shapefile and it worked.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 17:39:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585484#M45967</guid>
      <dc:creator>MatthewStarry</dc:creator>
      <dc:date>2014-03-19T17:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Help ListBookmarks example 3 not working</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585485#M45968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you show the modified code to create a shapefile from the bookmarks?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 17:47:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585485#M45968</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2014-03-19T17:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Help ListBookmarks example 3 not working</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585486#M45969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Michael,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will just need to update the outFC variable.&amp;nbsp; Ex:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;outFC = r'C:\Project\Bookmarks.shp'&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 17:53:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585486#M45969</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2014-03-19T17:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Help ListBookmarks example 3 not working</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585487#M45970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I didn't really modify the code. I just set the output feature class to a shapefile instead of a feature class in a FGDB.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy, os

# The map with the bookmarks
mxd = arcpy.mapping.MapDocument(r"C:\Project\Counties.mxd")

# The output feature class to be created -
# This feature class will store the bookmarks as features
outFC = r'C:\Project\Counties_Bookmarks.shp'

# A template feature class that contains the attribute schema
# Including a "Name" field to store the bookmark name
template = r'C:\Project\Counties.gdb\Template'

if arcpy.Exists(outFC):
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Delete_management(outFC)
arcpy.CreateFeatureclass_management(os.path.dirname(outFC),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; os.path.basename(outFC), 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "POLYGON", template, 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spatial_reference=template)

cur = arcpy.da.InsertCursor(outFC, ["SHAPE@", "Name"])
array = arcpy.Array()
for bkmk in arcpy.mapping.ListBookmarks(mxd):
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMin, bkmk.extent.YMin))
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMin, bkmk.extent.YMax))
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMax, bkmk.extent.YMax))
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMax, bkmk.extent.YMin))
&amp;nbsp;&amp;nbsp;&amp;nbsp; # To close the polygon, add the first point again
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(arcpy.Point(bkmk.extent.XMin, bkmk.extent.YMin))
&amp;nbsp;&amp;nbsp;&amp;nbsp; cur.insertRow([arcpy.Polygon(array), bkmk.name])
&amp;nbsp;&amp;nbsp;&amp;nbsp; array.removeAll()&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 01:10:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585487#M45970</guid>
      <dc:creator>MatthewStarry</dc:creator>
      <dc:date>2021-12-12T01:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Help ListBookmarks example 3 not working</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585488#M45971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jake:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any idea why the original code would not work against a file geodatabase?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 18:09:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585488#M45971</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2014-03-19T18:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Help ListBookmarks example 3 not working</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585489#M45972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Cannot say for sure; it looks like this may be a bug.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 18:29:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585489#M45972</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2014-03-19T18:29:37Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Help ListBookmarks example 3 not working</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585490#M45973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jake:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have you confirmed that this python script run with a file geodatabase, modified for your specific environment, does not work in your environment?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 18:39:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585490#M45973</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2014-03-19T18:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Help ListBookmarks example 3 not working</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585491#M45974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I can get this code to work when the output is a shape.&amp;nbsp; My issue is that I have my data frame rotated 3.5 degrees for a better display area.&amp;nbsp; When the bookmark polys are created, the x,y pairs don't take into account this rotation (see attachment).&amp;nbsp; How can I add this rotation factor in the python code so that my extent rectangles are a true representation of what is being displayed in the data frame?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2014 14:54:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585491#M45974</guid>
      <dc:creator>KyleSchaper</dc:creator>
      <dc:date>2014-06-02T14:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: ArcGIS Help ListBookmarks example 3 not working</title>
      <link>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585492#M45975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes that can be done.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd take a look at &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//00s300000003000000"&gt;this&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;so it would be something like&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;df = arcpy.mapping.ListDataFrames(mxd, "#Yourmapdocumentnamehere")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;df.rotation = 3.5&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2014 15:44:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcgis-help-listbookmarks-example-3-not-working/m-p/585492#M45975</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2014-06-02T15:44:22Z</dc:date>
    </item>
  </channel>
</rss>

