KML in Layer (Konvertierung)

Lizenzstufe:BasicStandardAdvanced

Zusammenfassung

Konvertiert eine KML- oder KMZ-Datei in Feature-Classes und eine Layer-Datei. Die Layer-Datei übernimmt die Symbologie aus der ursprünglichen KML- oder KMZ-Datei.

Weitere Informationen zur KML-Unterstützung in ArcGIS

Verwendung

Syntax

KMLToLayer_conversion (in_kml_file, output_folder, {output_data}, {include_groundoverlay})
ParameterErläuterungDatentyp
in_kml_file

Die zu übertragende KML- oder KMZ-Datei.

File
output_folder

Der Zielordner für die File-Geodatabase und die Layer-Datei (.lyr).

Folder
output_data
(optional)

Der Name der Ausgabe-File-Geodatabase und der Layer-Datei (.lyr). Standardmäßig wird der Name der Eingabe-KML-Datei verwendet.

String
include_groundoverlay
(optional)

Beziehen Sie Bodenüberlagerungen (Raster, Luftaufnahmen usw.) ein. Seien Sie vorsichtig, wenn die KMZ-Datei auf einen Service verweist, der Raster-Bilddaten bereitstellt. Das Werkzeug versucht, die Raster-Bilddaten in allen verfügbaren Maßstäben zu übertragen. Dieser Prozess kann lange dauern und den Service möglicherweise überlasten.

  • GROUNDOVERLAYBodenüberlagerungen sind in der Ausgabe enthalten.
  • NO_GROUNDOVERLAYBodenüberlagerungen sind nicht in der Ausgabe enthalten. Dies ist die Standardeinstellung.
Boolean

Codebeispiel

KMLToLayer – Beispiel 1 (Python-Fenster)

Konvertiert eine KMZ-Datei in eine FGDB im Python-Fenster.

import arcpy

arcpy.KMLToLayer_conversion(r'C:\kmls\earthquakes.kml',r'C:\gisdata\fromkmls','earthquake_09')
KMLToLayer - Beispiel 2 (eigenständiges Skript)

Mit dem folgenden Skript wird ein Ordner mit KMZ- und KML-Dateien in die entsprechende File-Geodatabase konvertiert. Die Feature-Classes in diesen File-Geodatabases werden dann zu einer einzigen File-Geodatabase konsolidiert.

Hinweis: Dieses Skript behält die Layer-Dateien aus dem Werkzeug "KML in Layer" nicht bei.

# Name: BatchKML_to_GDB.py
# Description: Converts a directory of KMLs and copies the output into a single fGDB.
#              A 2 step process: first convert the KML files, and then copy the featureclases

# Import system models
import arcpy, os

# Set workspace (where all the KMLs are)
arcpy.env.workspace="C:/VancouverData/KML"

# Set local variables and location for the consolidated file geodatabase
outLocation = "C:/WorkingData/fGDBs"
MasterGDB = 'AllKMLLayers.gdb'
MasterGDBLocation = os.path.join(outLocation, MasterGDB)

# Create the master FileGeodatabase
arcpy.CreateFileGDB_management(outLocation, MasterGDB)

# Convert all KMZ and KML files found in the current workspace
for kmz in arcpy.ListFiles('*.KM*'):
  print "CONVERTING: " + os.path.join(arcpy.env.workspace,kmz)
  arcpy.KMLToLayer_conversion(kmz, outLocation)


# Change the workspace to fGDB location
arcpy.env.workspace = outLocation

# Loop through all the FileGeodatabases within the workspace
wks = arcpy.ListWorkspaces('*', 'FileGDB')
# Skip the Master GDB
wks.remove(MasterGDBLocation)

for fgdb in wks:  
     
  # Change the workspace to the current FileGeodatabase
  arcpy.env.workspace = fgdb    

  # For every Featureclass inside, copy it to the Master and use the name from the original fGDB  
  featureClasses = arcpy.ListFeatureClasses('*', '', 'Placemarks')
  for fc in featureClasses:
    print "COPYING: " + fc + " FROM: " + fgdb    
    fcCopy = fgdb + os.sep + 'Placemarks' + os.sep + fc    
    arcpy.FeatureClassToFeatureClass_conversion(fcCopy, MasterGDBLocation, fgdb[fgdb.rfind(os.sep)+1:-4])
  

# Clean up
del kmz, wks, fc, featureClasses, fgdb

Umgebung

Verwandte Themen

Lizenzierungsinformationen

ArcGIS for Desktop Basic: Ja
ArcGIS for Desktop Standard: Ja
ArcGIS for Desktop Advanced: Ja
9/11/2013