This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Convert features to points without an ArcGIS Advanced license. | |
This example truncates an existing feature class and then | |
inserts the created rows from the source feature class. | |
""" | |
import arcpy as ap | |
# list field objects to get the name property | |
fld_objs = ap.ListFields(in_path_fc) | |
# loop through the field objects and append their names to the list |