Résumé
Adds a file to a Product Library. This associates the file with a Product Library entry. Once you have added a file to a product library, use Check Out File and Check In File to manage changes made to it.
Une bibliothèque de produits stockent les informations et les données requises pour la production de données cartographiques et numériques dans une géodatabase. ArcGIS Defense Mapping, ArcGIS Production Mapping, ArcGIS Maritime, ArcGIS Bathymetry et ArcGIS Aviation stockent les règles métier, les documents et les informations spatiales dans une bibliothèque de produits.
Utilisation
L'espace de travail de la bibliothèque de produits doit être une géodatabase.
Le chemin d'accès au fichier de la bibliothèque de produits permet d'accéder au nœud de l'arborescence de la bibliothèque de produits en question. Un chemin d'accès à la bibliothèque de produit est une chaîne délimitée par deux symboles deux points, (::) dans ce format : Nom de la solution::Nom de la classe de produit::Nom de la série::Nom du produit::Nom de l'instance::Nom AOI.
Pour identifier un chemin d'accès à la bibliothèque de produits, accédez à un élément dans la fenêtre Bibliothèque de produits, cliquez avec le bouton droit et sélectionnez Copier en tant que chemin. Le chemin d'accès à la bibliothèque de produits est placé dans le Presse-papiers. Vous pouvez le coller dans n'importe quel paramètre nécessitant un chemin d'accès à la bibliothèque de produits.
This tool will not overwrite existing files in Product Library File Path. The tool will return ERROR 90102: File already exists if it finds an existing file with the same name as the file to add in Product Library File Path.
Syntaxe
arcpy.production.PLAddFile(product_library_workspace, product_library_itempath, filepath, {checkin_comments}, {product_library_ownername})
Paramètre | Explication | Type de données |
product_library_workspace | Chemin d'accès à l'espace de travail de la bibliothèque de produits. | Workspace |
product_library_itempath | Le chemin d'accès à la bibliothèque de produits de l'élément. Cela est exprimé ainsi Nom de la solution::Nom de la classe de produit::Nom de la série::Nom du produit::Nom de l'instance::Nom AOI::Nom de fichier. | String |
filepath | Path to the file that is going to be added to the product library. | File |
checkin_comments (Facultatif) | Commentaires à associer à l'insertion. | String |
product_library_ownername (Facultatif) | Nom du propriétaire de la structure de la bibliothèque de produits. Définissez ce paramètre si le compte utilisateur spécifié dans product_library_workspace n’est pas le propriétaire de la structure. Ceci s'applique uniquement aux bibliothèques de produits stockées dans les géodatabases d'entreprise. | String |
Exemple de code
PLAddFile example (Python window)
The following Python window script demonstrates how to use the PLAddFile tool.
# Name: PLAddFile_Example.py
# Description: Adds a file to a Product Library
# Requirements: Production Mapping extension
# import arcpy and checkout a Production Mapping license
import arcpy
arcpy.CheckOutExtension("foundation")
# Product library and item path variables
product_library_workspace = "C:\\Data\\ProductLibrary.gdb"
product_library_itempath = "Products::NewSolution::NewClass::NewSeries"
# path to an existing file
file_path = "c:\\data\\script.py"
# execute the Add File tool
try:
res = arcpy.PLAddFile_production(product_library_workspace, product_library_itempath,file_path)
print res.getMessages()
except Exception, e:
print e.message
print "Script completed successfully."
Environnements
Informations de licence
- Basic: Non
- Standard: Requiert Production Mapping
- Advanced: Requiert Production Mapping