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

List Items

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

Zusammenfassung

Returns a list of child items that are associated with a node in the Product Library tree.

Eine Produktbibliothek speichert Informationen und Daten, die für die kartografische und digitale Datenproduktion in einer Geodatabase erforderlich sind. In ArcGIS Defense Mapping, ArcGIS Production Mapping, ArcGIS Maritime, ArcGIS Bathymetry und ArcGIS Aviation werden Geschäftsregeln, Dokumente und räumliche Informationen in einer Produktbibliothek gespeichert.

Verwendung

  • Der Produktbibliothek-Workspace muss eine Geodatabase sein. Wenn es sich um eine Enterprise-Geodatabase handelt, verwenden Sie einen Pfad zu einer SDE-Verbindungsdatei.

  • Der Dateipfad der Produktbibliothek ist der Pfad zum Strukturknoten der Produktbibliothek. Ein Produktbibliothekpfad ist eine durch zwei Doppelpunkte (::) getrennte Zeichenfolge in diesem Format: Lösungsname::Produktklassenname::Serienname::Produktname::Instanzname::AOI-Name.

  • Um den Produktbibliothekpfad zu bestimmen, navigieren Sie zu einem Element im Fenster Produktbibliothek, klicken Sie mit der rechten Maustaste, und wählen Sie Als Pfad kopieren aus. Der Produktbibliothekpfad wird in die Zwischenablage eingefügt. Sie können ihn in jeden Parameter einfügen, für den ein Produktbibliothekpfad erforderlich ist.

Syntax

arcpy.production.PLListItems(product_library_workspace, product_library_itempath, {product_library_ownername})
ParameterErklärungDatentyp
product_library_workspace

Pfad zum Produktbibliothek-Workspace.

Workspace
product_library_itempath

Der Pfad zu der Produktbibliothekebene mit den Dateien, die Sie anzeigen möchten. Dieser wird folgendermaßen angegeben: Lösungsname::Produktklassenname::Serienname::Produktname::Instanzname::AOI-Name.

String
product_library_ownername
(optional)

Name des Besitzers des Bibliothekschemas. Legen Sie diesen Parameter fest, wenn das in product_library_workspace angegebene Benutzerkonto nicht der Schemabesitzer ist. Dies gilt nur für Produktbibliotheken, die in Enterprise-Geodatabases gespeichert sind.

String

Codebeispiel

PLListItems example (stand-alone script)

The following stand-alone script demonstrates how to use the PLListItems tool

# Name: PLListItems_Example.py
# Description: List the items associated with a Series in a Product Library
# Requirements: Production Mapping extension

# import arcpy and checkout a Production Mapping license
import arcpy
arcpy.CheckOutExtension("foundation")

#Set local variables
production_database_workspace = "C:\\Data\\ProductLibrary.gdb"
product_library_itempath = "Products::Topographic Maps::Texas::Travis County"

# List items in this item path
result = arcpy.PLListItems_production(production_database_workspace, product_library_itempath)
item_list = result.getOutput(0).split(";")

# print out the items in this list
for i in item_list:
	print i

# print out the messages from PLListItems
print result.getMessages()

print "Script completed successfully."

# Check in the extension
arcpy.CheckInExtension("foundation")

Umgebungen

  • Aktueller Workspace

Lizenzinformationen

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

Verwandte Themen

  • An overview of the Product Library 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