Create Adjoining Sheet Guide Data (Defense Mapping)

License Level:BasicStandardAdvanced

Summary

Esri Defense Mapping cartographic production tool that creates data used in the adjoining sheet guide of defense mapping templates. This tool uses an input area of interest (AOI) to find surrounding areas of interest. It creates data within those AOIs in the ASG_COAST_L and ASG_LAND_A feature classes.

Usage

Syntax

CreateAdjoiningSheetGuideData_defense (Input_Geodatabase, Input_Area_of_Interest, Input_Land_Features, Scale)
ParameterExplanationData Type
Input_Geodatabase

Geodatabase that contains the CARTO feature dataset and ASG* feature classes. Data created for the adjoining sheet guide is appended to the feature classes in this geodatabase.

Workspace
Input_Area_of_Interest

A feature layer with a single selected feature that is used to identify the center and surrounding areas of interest (AOIs). Adjoining sheet guide data is created within these AOIs.

Feature Layer
Input_Land_Features

Land features used by the tool to create adjoining sheet guide data in the ASG_COAST_L and ASG_LAND_A feature classes in the input geodatabase.

Feature Layer
Scale

Defines a factor by which the extent of the Input Area of Interest is expanded. The expanded extent is used to select adjoining areas of interest. Data from the adjoining areas of interest is included in the adjoining sheet guide.

  • 1:50000Uses specification MIL-T-89301A to determine how to expand the width and height of the extent of the Input Area of Interest.
  • 1:100000Uses specification MIL-T-89306 to determine how to expand the width and height of the extent of the Input Area of Interest.
String

Code Sample

CreateAdjoiningSheetGuideData example (Python window)

The following code sample demonstrates how to use the CreateAdjoiningSheetGuideData tool.

# set gp environment
arcpy.env.addOutputsToMap = True

# local variables
geodb="c:/data/CARTO.gdb"
areaOfInterest = "C:/Program Files (x86)/ArcGIS/EsriDefenseMapping/Desktop10.1/ReferenceData/MapIndex.mdb/MapIndex/TLM100_Index"
areaOfInterestLyr="TLM100IDX"
whereclause="NRN='V695X1856'"
landFeatures="C:/Program Files (x86)/ArcGIS/EsriDefenseMapping/Desktop10.1/ReferenceData/MapIndex.mdb/MapIndex/LandPoly"
scale="1:50000"

# create a feature layer for processing
arcpy.MakeFeatureLayer_management(areaOfInterest,areaOfInterestLyr)
arcpy.SelectLayerByAttribute_management(areaOfInterestLyr,"NEW_SELECTION",whereclause)

desc=arcpy.Describe(areaOfInterestLyr)
fidlist=desc.FIDSet.split(";")
if len(fidlist) == 1:
    # execute the CreateAdjoiningSheetGuideData tool
    arcpy.CreateAdjoiningSheetGuideData_defense(geodb, areaOfInterestLyr, landFeatures, scale)

Environments

Related Topics

Licensing Information

ArcGIS for Desktop Basic: No
ArcGIS for Desktop Standard: Requires Defense Mapping
ArcGIS for Desktop Advanced: Requires Defense Mapping
9/2/2013