Gitter- und Gradnetze löschen (Cartography)

Zusammenfassung

Löscht alle zu einem oder mehreren ausgewähltem Gitter- und Gradnetz-Features gehörenden Features aus einem Feature-Dataset.

Verwendung

Syntax

DeleteGridsAndGraticules_cartography (in_grid_dataset, grid_name)
ParameterErläuterungDatentyp
in_grid_dataset

Die Feature-Dataset-Position, an der die Gitter- und Gradnetz-Layer, die gelöscht werden können, gespeichert sind.

Feature Dataset
grid_name
[grid_name,...]

Listet die Gitter- und Gradnetz-Layer im Feature-Dataset auf, die gelöscht werden können.

String

Codebeispiel

Werkzeug "DeleteGridsAndGraticules" – Beispiel (Python-Fenster)

Löscht Gitter- und Gradnetz-Layer aus einem Feature-Dataset.

import arcpy
from arcpy import env
env.workspace = "C:/Python_Output"
arcpy.DeleteGridsAndGraticules_cartography("C:/Python_Output/grid_layers.gdb/QUAD_24K", 
"Plaza Washington (Quad_24K_NAD83)")
Werkzeug "DeleteGridsAndGraticules" – Beispiel (eigenständiges Python-Skript)

Löscht Gitter- und Gradnetz-Layer aus einem Feature-Dataset.

 # Name: DeleteGridsAndGraticules.py 
# Description: Delete grid(s) from a feature dataset. 
# Author: ESRI 

# Import system module 
import arcpy 

# Enabling logging of the results 
arcpy.logHistory = True
 
# Set the values of the tool's parameters 
input_grid_dataset = "C:/Python_Output/grid_layers.gdb/QUAD_24K" 
grid_name = ['Plaza Washington (Quad_24K_NAD83)','Swift Minnesota (Quad_24K_NAD83)'] 

# Process: Delete Grids and Graticules 
arcpy.DeleteGridsAndGraticules_cartography(input_grid_dataset, grid_name) 
print "Grids and Graticules features deletion successful"

Umgebungen

Dieses Werkzeug verwendet keine Geoverarbeitungsumgebungen.

Verwandte Themen

Lizenzinformationen

ArcView: Nein
ArcEditor: Ja
ArcInfo: Ja

7/10/2012