I have a txt file like this:
Point0 347172.2 4269952.7 60.90909090910 337172.8 4278952.4 85.73349090910 344572.3 4547952.2 123.9096730910 347532.8 8777952.8 456.467809091ENDThe third column are some values i want to have in my points.shp. I wrote this script but it doesn't seem to work, meaning it doesn't pass the specific values of the third column
import arcgisscriptinggp = arcgisscripting.create()# Set up inputs to toolinTxt = arcpy.GetParameterAsText(0)inSep = "."strms = arcpy.GetParameterAsText(1)# Run toolgp.CreateFeaturesFromTextFile(inTxt, inSep, strms, "#")What should i add also?
أكثر...
Point0 347172.2 4269952.7 60.90909090910 337172.8 4278952.4 85.73349090910 344572.3 4547952.2 123.9096730910 347532.8 8777952.8 456.467809091ENDThe third column are some values i want to have in my points.shp. I wrote this script but it doesn't seem to work, meaning it doesn't pass the specific values of the third column
import arcgisscriptinggp = arcgisscripting.create()# Set up inputs to toolinTxt = arcpy.GetParameterAsText(0)inSep = "."strms = arcpy.GetParameterAsText(1)# Run toolgp.CreateFeaturesFromTextFile(inTxt, inSep, strms, "#")What should i add also?
أكثر...