laptop and a wrench

Bug

Exporting a range of pages (with an SDE data source) is slower in ArcGIS Pro than in ArcMap.

Last Published: April 23, 2022 ArcGIS Pro
Bug ID Number BUG-000147574
SubmittedMarch 14, 2022
Last ModifiedJune 5, 2024
Applies toArcGIS Pro
Version found2.8.4
Operating SystemWindows OS
Operating System Version11.0 64 bit
StatusFixed

Workaround

Export the page range via ArcPy (Python) instead.

Use the following code to export:

##Export Page Range Map Series to PDF

aprx = arcpy.mp.ArcGISProject("CURRENT")

lyt = aprx.listLayouts()[0]

ms = lyt.mapSeries

start = time.time()

ms.exportToPDF(f"C:\Temp\{lyt.name}.pdf", "RANGE", "1-10", resolution=300)

end = time.time()

print(f"{lyt.name} exported in {end - start} seconds")

print("Done")

Steps to Reproduce

Bug ID: BUG-000147574

Software:

  • ArcGIS Pro

Get notified when the status of a bug changes

Download the Esri Support App

Discover more on this topic

Get help from ArcGIS experts

Contact technical support

Download the Esri Support App

Go to download options