i would like to know about the script called "polylineVertices to points". I also could not find this tool bar in google. Could any one help me to find this script?

1058
2
09-22-2016 02:45 PM
SudanPokharel
New Contributor

Whats the use and how can i download this toolbar?

0 Kudos
2 Replies
DanPatterson_Retired
MVP Emeritus

if you have an advanced license Feature Vertices To Points—Help | ArcGIS for Desktop 

if not, the new scripts website is here... ArcGIS Code Sharing and if the script has been moved, it will be there, otherwise, the exact script name and author and/or URL is needed to see if it can be extracted from the old scripts archive

DarrenWiens2
MVP Honored Contributor

For what it's worth, you can make your own script that converts polyline vertices to points as simple as:

in_fc = "my_layer" # change this to a layer name
out_fc = r"C:\junk\out_fc.shp" # change this to an output location
np_arr = arcpy.da.FeatureClassToNumPyArray(in_fc,'*',explode_to_points=True) # leave alone
arcpy.da.NumPyArrayToFeatureClass(np_arr, out_fc, 'Shape') # leave alone