ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Hilfe
  • Sign Out
ArcGIS Desktop

ArcGIS Online

Die Mapping-Plattform für Ihre Organisation

ArcGIS Desktop

Ein vollständiges professionelles GIS

ArcGIS Enterprise

GIS in Ihrem Unternehmen

ArcGIS Developers

Werkzeuge zum Erstellen standortbezogener Apps

ArcGIS Solutions

Kostenlose Karten- und App-Vorlagen für Ihre Branche

ArcGIS Marketplace

Rufen Sie Apps und Daten für Ihre Organisation ab.

  • Dokumentation
  • Support
Esri
  • Anmelden
user
  • Eigenes Profil
  • Abmelden

ArcMap

  • Startseite
  • Erste Schritte
  • Karte
  • Analysieren
  • Verwalten von Daten
  • Werkzeuge
  • Erweiterungen

Production Clip

Mit der Production Mapping-Lizenz verfügbar.

  • Zusammenfassung
  • Abbildung
  • Verwendung
  • Syntax
  • Codebeispiel
  • Umgebungen
  • Lizenzinformationen

Zusammenfassung

This tool takes a geodatabase and clip geometry, as well as any clip override representations, present on the features.

Abbildung

Production Clip diagram

Verwendung

  • Everything will be clipped in the geodatabase that can be clipped. To get the best results, copy only the necessary data to another database before running the tool.

  • Clip Features must be polygons.

  • This tool works directly on the Input Geodatabase.

Syntax

arcpy.production.ProductionClip(input_geodatabase, clip_features)
ParameterErklärungDatentyp
input_geodatabase

The geodatabase that contains the features to be clipped.

Workspace
clip_features

The features used to clip the Input Geodatabase.

Feature Layer

Codebeispiel

The following stand-alone sample script demonstrates how to use ProductionClip tool.

# Name: ProductionClip_Example.py
# Description: Clips the underlying geometry as well as override geometry if applicable.  The tool clips an entire geodatabase.

# Import system modules
import arcpy

# Check out extension
arcpy.CheckOutExtension("Foundation")

# Define variables
input_geodatabase = r"C:\data\Edit_Sample.gdb"
clip_features = arcpy.MakeFeatureLayer_management(r"C:\data\Edit_Sample.gdb\10k_AOIs", "AOIs")
arcpy.SelectLayerByAttribute_management("AOIs", "NEW_SELECTION", "SheetID = 2104")

# Execute Production Clip
# All feature classes will be clipped in the geodatabase using the selected clip features
arcpy.ProductionClip_production(input_geodatabase, clip_features)

# Check in Production Mapping license
arcpy.CheckInExtension("Foundation")

Umgebungen

  • Aktueller Workspace

Lizenzinformationen

  • Basic: Nein
  • Standard: Erfordert Production Mapping
  • Advanced: Erfordert Production Mapping

Verwandte Themen

  • An overview of the Editing toolset

ArcGIS Desktop

  • Startseite
  • Dokumentation
  • Support

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

Über Esri

  • Über uns
  • Karriere
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Wir sind an Ihrer Meinung interessiert.
Copyright © 2021 Esri. | Datenschutz | Rechtliches