Desktop Mapping: Building Map Books

Slides:



Advertisements
Similar presentations
Publishing GIS Services to ArcGIS for Server
Advertisements

Creating Map Books ArcMap 10 Data Driven Pages
Technical Workshop 2013 Esri International User Conference July 8–12, 2013 | San Diego, California ArcGIS Tracking Analyst – an Introduction Morakot Pilouk,
Intro to ArcGIS for New Users. ArcGIS Desktop Advanced GeoprocessingArcInfo ArcReader Data Access Map Viewing Query Advanced EditingArcEditor ArcView.
Esri UC 2014 | Technical Workshop | Audience Participation URL: goo.gl/tN4Vzq Open in device browser… CAD: The ArcGIS for AutoCAD Plug-in.
Esri UC 2014 | Technical Workshop | Performing Advanced Cartography with Esri Production Mapping Clint Loveman & Madhura Phaterpekar.
Esri UC2013. Technical Workshop. Technical Workshop 2013 Esri International User Conference July 8–12, 2013 | San Diego, California Editing in ArcMap:
Sharing Geographic Content
Esri UC2013. Technical Workshop. Technical Workshop 2013 Esri International User Conference July 8–12, 2013 | San Diego, California ArcGIS for Local Government.
ArcGIS Workflow Manager An Introduction
Esri UC 2014 | Technical Workshop | Accessing Spatial Databases in ArcGIS using Query Layers Annie Sasidar.
1/36. 2/36 Something cool …
Mapping The Michigan Geographic Framework Tony Olkowski & Jim Shively Center for Geographic Information Michigan Department of Information Technology.
Esri International User Conference | San Diego, CA Technical Workshops | ArcGIS ArcMap: Printing, Exporting, and ArcPress Michael Grossman Jeremy Wright.
Introduction to ArcPy. Topics What is ArcPy? Accessing geoprocessing tools using ArcPy Writing scripts using ArcPy.
Python Map Automation: Introduction to arcpy.mapping / arcpy.mp
Esri UC2013. Technical Workshop. Technical Workshop 2013 Esri International User Conference July 8–12, 2013 | San Diego, California Migrating your Data.
Enabling High-Quality Printing in Web Applications
Advance Map Automation With Python
Esri Defense Mapping: Cartographic Production
Preparing and Deploying Data to ArcPad Juan Luera.
Esri UC 2014 | Technical Workshop | Python Map Automation – Beyond the Basics of arcpy.mapping Jeff Barrette Jeff Moulds.
Technical Workshops | Esri International User Conference San Diego, California Supporting High-Quality Printing in Web Applications with ArcGIS 10.1 for.
Esri UC 2014 | Technical Workshop | Geocoding with ArcGIS Online and ArcGIS Online World Geocoding Service Jeff Rogers and Brad Niemand.
Esri UC2013. Technical Workshop. Technical Workshop 2013 Esri International User Conference July 8–12, 2013 | San Diego, California Supporting High-Quality.
Esri UC2013. Technical Workshop. Technical Workshop 2013 Esri International User Conference July 8–12, 2013 | San Diego, California Building Map Books.
Esri UC 2014 | Technical Workshop | Creating Geoprocessing Services Kevin Hibma.
Adding ArcGIS Online to Your GIS Curriculum
Map Books & Dynamic Tables
Esri UC 2014 | Technical Workshop | Using ArcGIS Online Analysis Widgets Shing Lin, Jerome Yang.
Configuring the Briefing Book Application in your Community Lindsay Thomas.
Desktop Mapping: Building Map Books Jeff Barrette Michael Grossman.
ArcGIS Online: Sharing your Content Ben Ramseth John Thieling.
Esri UC2013. Technical Workshop. Technical Workshop 2013 Esri International User Conference July 8–12, 2013 | San Diego, California Python Map Automation.
Publishing GIS Services to ArcGIS Server
Esri UC 2014 | Technical Workshop | Python Map Automation – Introduction to arcpy.mapping Michael Grossman Jeff Barrette.
Esri UC 2014 | Technical Workshop | ArcGIS API for JavaScript: An Introduction Kelly Hutchins Derek Swingley.
Esri UC 2014 | Technical Workshop | Migrating Data To The Parcel Fabric Christine Leslie Amir Bar-Maor.
Esri UC 2014 | Technical Workshop | Address Maps and Apps for State and Local Government Allison Muise Nikki Golding Scott Oppmann.
Esri UC 2014 | Technical Workshop | ArcGIS Online: Administering Your ArcGIS Organization through Scripting Witt Mathot, Dan O’Leary, Evan Caldwell.
Jeff Barrette Jeff Moulds
ArcGIS Pro Mapping and Visualization
ArcGIS Workflow Manager: Advanced Workflows and Concepts
Desktop Mapping: Building Map Books
Accessing Spatial Information from MaineDOT
Table of Contents: Part B
Geoprocessing with ArcGIS for Server
ArcGIS for the Military—Land Operations
Python Map Automation – Introduction to arcpy.mapping
ArcGIS Deed Drafter: An Introduction
Python Map Automation – Beyond the Basics of arcpy.mapping
Learning Common GIS Workflows
Landscape Data: Esri Insights and Landscape Analyst
Learning Common GIS Workflows
Building Map Books in ArcGIS
Types of Geodatabases: Which One Is Right for Me?
Collaboration and Reporting Using Portal for ArcGIS
ArcGIS Pro: What’s New in Editing and Data Management
Python Map Automation – Beyond the Basics of arcpy.mapping
ModelBuilder – Getting Started
Mapping Population Data
Types of Geodatabases: Which One Is Right for Me?
Building Map Books in ArcGIS
Python – Beyond the Basics
ModelBuilder – Getting Started
Andrew Hendrickson & Brian Embley
ArcGIS Pro: An Introduction Overview
Esri Production Mapping: An Introduction
Presentation transcript:

Desktop Mapping: Building Map Books Jeff Barrette Samantha Keehan

Map automation options Data Driven Pages (DDP) User interface approach to building map pages arcpy.mapping Scripting framework for automating map output Can be used to extend DDP Desktop Mapping: Building Map Books

Types of Map Books Collection of map pages Plus additional pages like: titles, TOC, index pages, etc. Most common are reference map books series of pages that iterate across a geographic area reference grid based, strip maps, or feature based DDP and/or arcpy.mapping Desktop Mapping: Building Map Books

Types of Map Books (cont.) Thematic all pages have the same extent each page shows unique layers Temporal mapping time series data each page shows unique data and time arcpy.mapping only Desktop Mapping: Building Map Books

Data Driven Pages Index layer Single map layout Pages based on feature extents Other map updates Dynamic legends, text, and pictures Desktop Mapping: Building Map Books

Data Driven Pages Samantha Keehan

What is arcpy.mapping? A map scripting environment introduced at 10.0 Python mapping module that is part of the ArcPy site-package An API that allows users to: manage map documents, layer files, and their contents find a layer with data source X and replace with Y update a layer’s symbology in many MXDs generate reports that lists document information data sources, broken layers, spatial reference info, etc. Automate the exporting and printing of map documents Automate map production and create map books extend Data Driven Pages capabilities Desktop Mapping: Building Map Books

arcpy.mapping example - appending PDFs import arcpy newPDF = arcpy.mapping.PDFDocumentCreate( “C:/project/newpdf.pdf”) newPDF.appendPages(“C:/project/titlepage.pdf”) newPDF.appendPages(“C:/project/mappages.pdf”) newPDF.appendPages(“C:/project/indexpages.pdf”) newPDF.saveAndClose() Desktop Mapping: Building Map Books

arcpy.mapping Jeff Barrette

Resources available ArcGIS Resource Center (web help) Building map books / DDP: http://esriurl.com/8147 arcpy.mapping: http://esriurl.com/8148 Alphabetical lists of classes and functions with detailed discussions Multiple sample scripts for each class and function topic ArcGIS Resource Center (forums) Map Automation: http://esriurl.com/4624 Python: http://esriurl.com/4625 ArcGIS Online – arcpy.mapping / Map Automation group http://esriurl.com/4626 Download sample scripts (be sure to check “Show ArcGIS Desktop Content”) Desktop Mapping: Building Map Books

First Offering ID: 1690 Second Offering ID: 1691 Thank you… Please fill out the session evaluation First Offering ID: 1690 Second Offering ID: 1691 Online – www.esri.com/ucsessionsurveys Paper – pick up and put in drop box Desktop Mapping: Building Map Books