I have a dataset collected with Survey 123 and need to run a spatial map series for a filtered set of the data on a regular basis. The map series will be run on each unique entry but the number of pages will be dependent on the data and amount of pictures (attachments) for each entry. I am assuming this has to be done with arcpy.mp (don't see any other way to do multiple page layouts) but don't know and am looking for some guidance on where to start. Here is my initial thoughts. Any assessment regarding if I am on the right track would be great:
Page 1: will be similar for each unique entry but will change based on which attributes are present. My guess is I would need to create a layout based on each distinct first page.
Page 2-4: these pages will be reserved for imagery. Some entries will have 1 image some will have up to 6. All images will be attachments in the dataset. Based on the number of images I want different layouts to be used to best showcase the data.
The final goal is a PDF for each unique entry, the PDFs could be anywhere from 1 page to 5 pages based on the logic.
Given this my plan of attack is to create all the unique layouts with the dynamic data all setup. Then use arcpy.mp to analyze the entries and determine which layouts will be used and iterate through each entry and compile PDFs for each. Am I on the right track with this? If so I feel fairly comfortable creating the dynamic layouts but any help getting started with the arcpy.mp scripting would be helpful.