Package Map (Data Management)

License Level:BasicStandardAdvanced

Summary

Packages a map document and all referenced data sources to create a single compressed .mpk file.

Usage

Syntax

PackageMap_management (in_map, output_file, {convert_data}, {convert_arcsde_data}, {extent}, {apply_extent_to_arcsde}, {arcgisruntime}, {reference_all_data}, {version}, {additional_files}, {summary}, {tags})
ParameterExplanationData Type
in_map

The map document to be packaged.

ArcMap Document
output_file

The output map package (.mpk).

File
convert_data
(Optional)

Specifies whether input layers will be converted into a file geodatabase or preserve their original format.

  • CONVERT Data will be converted to a file geodatabase.
    NoteNote:

    This parameter does not apply to enterprise geodatabase data sources. To convert enterprise geodatabase data, set convert_arcsde_data to CONVERT_ARCSDE.

  • PRESERVEData formats will be preserved when possible. This is the default.
    NoteNote:

    The exception to this rule are formats that are not supported in a 64x environment (personal geodatabase (.mdb) data, VPF data, and tables based on Excel spreadsheets or OLEDB connections) and raster formats that ArcGIS cannot write out natively (ADRG, CADRG/ECRG, CIB, and RPF).

Boolean
convert_arcsde_data
(Optional)

Specifies whether input enterprise geodatabase layers will be converted into a file geodatabase or preserve their original format.

  • CONVERT_ARCSDE Enterprise geodatabase data will be converted to a file geodatabase and included in the consolidated folder or package. This is the default.
  • PRESERVE_ARCSDE Enterprise geodatabase data will be preserved and will be referenced in the consolidated folder or package.
Boolean
extent
(Optional)

Specify the extent by manually entering the coordinates in the extent parameter using the format X-Min Y-Min X-Max Y-Max. To use the extent of a specific layer, specify the layer name.

  • MAXOFUnion of inputs
  • MINOFIntersection of inputs
  • DISPLAYSame extent as current display
  • <Layer>Same extent as specified layer
Extent
apply_extent_to_arcsde
(Optional)

Determines whether specified extent will be applied to all layers or only to enterprise geodatabase layers.

  • ALL Specified extent is applied to all layers. This is the default.
  • ARCSDE_ONLYSpecified extent is applied to enterprise geodatabase layers only.
Boolean
arcgisruntime
(Optional)

Specifies whether the package will support ArcGIS Runtime. To support ArcGIS Runtime, all data sources will be converted to a file geodatabase and a .msd will be created in the output package.

  • DESKTOPOutput package will not support ArcGIS Runtime. Unless otherwise specified, data sources will not be converted to a file geodatabase and a .msd will not be created.
  • RUNTIME Output package will support ArcGIS Runtime. All data sources will be converted to a file geodatabase and a .msd will be created in the output package.
Boolean
reference_all_data
(Optional)

Setting this option to REFERENCED will create a package that references the data needed rather than copying the data. This is valuable when trying to package large datasets that are available from a central location within an organization.

  • REFERENCEDCreates a package that references the data rather than copying the data.
  • NOT_REFERENCED Creates a package that contains all needed data. This is the default.
Boolean
version
[version,...]
(Optional)

Specifies the version of the geodatabases that will be created in the resulting package. Specifying a version allows packages to be shared with previous versions of ArcGIS and supports backward compatibility.

  • ALL Package will contain geodatabases and a map document compatible with all versions. (10.0 and higher)
  • CURRENT Package will contain geodatabases and a map document compatible with the version of the current release.
  • 10.1Package will contain geodatabases and a map document compatible with version 10.1.
  • 10Package will contain geodatabases and a map document compatible with version 10.0.
String
additional_files
(Optional)

Adds additional files to a package. Additional files, such as .doc, .txt, .pdf, and so on, are used to provide more information about the contents and purpose of the package.

File
summary
(Optional)

Adds Summary information to the properties of the package.

String
tags
(Optional)

Adds Tag information to the properties of the package. Multiple tags can be added or separated by a comma or semicolon.

String

Code Sample

PackageMap example 1 (Python window)

The following Python script demonstrates how to use the Package Map tool from the Python window:

import arcpy
arcpy.env.workspace = "C:/arcgis/ArcTutor/Editing" 
arcpy.PackageMap_management('Exercise1.mxd', 'EditingExercise1.mpk', "PRESERVE", "CONVERT_ARCSDE", "#", "ALL")
PackageMap example 2 (stand-alone script)

Find and create map packages for all map documents that reside in a specified folder.

# Name: PackageMap.py
# Description:  Find all the map documents that reside in a specified folder and create map packages for each map document.

# import system modules
import os
import arcpy

from arcpy import env

# Set environment settings
env.overwriteOutput = True
env.workspace = "C:/arcgis/ArcTutor/Editing" 

# Loop through the workspace, find all the mxds and create a map package using the same name as the mxd
for mxd in arcpy.ListFiles("*.mxd"):
    print "Packaging " + mxd
    arcpy.PackageMap_management(mxd, os.path.splitext(mxd)[0] + '.mpk', "PRESERVE", "CONVERT_ARCSDE", "#", "ALL")

Environments

Related Topics

Licensing Information

ArcGIS for Desktop Basic: Yes
ArcGIS for Desktop Standard: Yes
ArcGIS for Desktop Advanced: Yes
11/18/2013