Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

We have this large project in ArcGIS with 30 maps with different extents using Bookmarks to pan between these maps/pages.

Now we would like to use Data driven pages instead. The question is, is it possible to convert bookmarks to data driven pages or do we have to create a lot of polygons covering each map extent?

share|improve this question

2 Answers

Not directly, but you can do this with python and the arcpy.mapping module. Use arcpy.mapping.ListBookmarks to get the extent of each bookmark. Then create features for each extent. You will now be able to use this feature class as the index layer for Data Driven Pages.

share|improve this answer
Just for clarity, ListBookmarks is a new function in ArcGIS 10.1 – RyanDalton Sep 11 '12 at 23:18
OK, still on 10.0 here... I guess we'll update soon. Also I don't know Python that well at all. – Oskar Karlin Sep 20 '12 at 19:56

You seem to be far from alone in wanting this as Out-Of-The-Box functionality. There are at least three ArcGIS Ideas that I would recommend you add your name to:

In the meantime if someone is inspired to write a BookMarks To Feature Class tool, then I am sure its output would be well used as an Index Feature Class for Data Driven Pages.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.