Does anyone know any python script to import a bookmark (saved as a .dat) that was created and saved in folder by using arcpy? I tried with this script but without a result- just the name of the projects printed:
import arcpy
from arcpy import env
env.workspace = r"D:\desktop\Project"
for mxdname in arcpy.ListFiles("*.mxd"):
print mxdname
mxd = arcpy.mapping.MapDocument(r"D:\desktop\Project\\" + mxdname)
df = arcpy.mapping.ListDataFrames(mxd, "Layers")[0]
for bkmk in arcpy.mapping.ListBookmarks(mxd, 'Bookmark1', df):
print(str(bkmk.extent))
df.extent = bkmk.extent
mxd.save()
del mxdFor clarity, i asked it in Importing external bookmark (.dat) files into many MXDs using arcpy? - Geographic Information Systems Stack Exchange
Thanks