“Arcpy Save Save Map Layer в класс функций” Ответ

Arcpy Save Save Map Layer в класс функций

arcpy.management.CopyFeatures(in_features, out_feature_class, {config_keyword}, {spatial_grid_1}, {spatial_grid_2}, {spatial_grid_3})
Bohemian Unicorn

Arcpy Save Save Map Layer в класс функций

# Name: CopyFeatures_Example2.py
# Description: Convert all shapefiles in a folder to geodatabase feature classes
 
# Import system modules
import arcpy
import os
 
# Set environment settings
arcpy.env.workspace = "C:/data"
 
# Set local variables
out_workspace = "c:/output/output.gdb"
 
# Use ListFeatureClasses to generate a list of shapefiles in the workspace 
# shown above.
fc_list = arcpy.ListFeatureClasses()
 
# Execute CopyFeatures for each input shapefile
for shapefile in fc_list:
    # Determine the new output feature class path and name
    out_featureclass = os.path.join(out_workspace, 
                                    os.path.splitext(shapefile)[0])
    arcpy.CopyFeatures_management(shapefile, out_featureclass)
Bohemian Unicorn

Ответы похожие на “Arcpy Save Save Map Layer в класс функций”

Вопросы похожие на “Arcpy Save Save Map Layer в класс функций”

Больше похожих ответов на “Arcpy Save Save Map Layer в класс функций” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования