Hi all,From the Help of ArcGIS 10.0, I have learned the creating of Polylines, Polygons and Multipoints from 2 sets of Points in the Python Window of my ArcGIS 10.0. From the IDLE (Python GUI) of Python 2.5, I can edit the ArcPy-Python scripts and load the corrected, desired scripts to the Python Window for execution to obtain the .shp file and the .mxd Map. Now I tried to do the "Writing geometries" presented and provided in the Help of ArcGIS 10.0. I have 2 difficulties in storing/using the Point data in the .txt file and loading/executing the ArcPy-Python script in the Python Window of my ArcGIS 10.0. The following is copied from the Help of ArcGIS 10.0://////////////////////////////////////////////////////Writing geometriesArcGIS 10 Using insert and update cursors, scripts can create new features in a feature class or update existing ones. A script can define a feature by creating a point object, populating its properties, and placing it in an array. That array can then be used to set a feature's geometry. A single geometry part is defined by an array of points, so a multipart feature can be created from multiple arrays of points.Below is an example of a file to be processed by the script that follows. It contains a point ID and an x- and y-coordinate.1;-61845879.0968;45047635.48611;-3976119.96791;46073695.04511;1154177.8272;-25134838.35111;-62051091.0086;-26160897.91012;17365918.8598;44431999.75072;39939229.1582;45252847.39792;41170500.6291;27194199.15912;17981554.5952;27809834.89453;15519011.6535;11598093.86193;52046731.9547;13034577.24463;52867579.6019;-16105514.23173;17160706.948;-16515938.0553The following example shows how to read a text file containing a series of linear coordinates (as above) and use them to create a new feature class.# Create a new line feature class using a text file of coordinates.# Each coordinate entry is semicolon delimited in the format of ID;X;Y# Import ArcPy and other required modules#import arcpyfrom arcpy import envimport fileinputimport stringimport osenv.overwriteOutput = True# Get the coordinate ASCII file#infile = arcpy.GetParameterAsText(0)# Get the output feature class#fcname = arcpy.GetParameterAsText(1)# Get the template feature class#template = arcpy.GetParameterAsText(2)try: # Create the output feature class # arcpy.CreateFeatureclass_management(os.path.dirname(fcname), os.path.basename(fcname), "Polyline", template) # Open an insert cursor for the new feature class # cur = arcpy.InsertCursor(fcname) # Create an array and point object needed to create features # lineArray = arcpy.Array() pnt = arcpy.Point() # Initialize a variable for keeping track of a feature's ID. # ID = -1 for line in fileinput.input(infile): # Open the input file # set the point's ID, X and Y properties # pnt.ID, pnt.X, pnt.Y = string.split(line,";") print pnt.ID, pnt.X, pnt.Y if ID == -1: ID = pnt.ID # Add the point to the feature's array of points # If the ID has changed, create a new feature # if ID != pnt.ID: # Create a new row or feature, in the feature class # feat = cur.newRow() # Set the geometry of the new feature to the array of points # feat.shape = lineArray # Insert the feature # cur.insertRow(feat) lineArray.removeAll() lineArray.add(pnt) ID = pnt.ID # Add the last feature # feat = cur.newRow() feat.shape = lineArray cur.insertRow(feat) lineArray.removeAll() fileinput.close() del curexcept Exception as e: print e.messageAn array of points is not necessary when writing point features. A single point object is used to set the geometry of a point feature.All geometries are validated before they are written to a feature class. Issues such as incorrect ring orientation and self-intersecting polygons, among others, are corrected when the geometry is simplified before its insertion./////////////////////////////////////////////////////////////////////////////////////////////////////////////////Problem #1: Where should I shave the data of ID, X-coordinate, and Y-coordinate of the points? I tried to save the point data in the .txt file of my Notepad:ID,X,Y,1;-61845879.0968;45047635.48611;-3976119.96791;46073695.04511;1154177.8272;-25134838.35111;-62051091.0086;-26160897.91012;17365918.8598;44431999.75072;39939229.1582;45252847.39792;41170500.6291;27194199.15912;17981554.5952;27809834.89453;15519011.6535;11598093.86193;52046731.9547;13034577.24463;52867579.6019;-16105514.23173;17160706.948;-16515938.0553:Is this file right to use in the project?Problem #2:I tried to use the IDLE (Python GUI) to load the script of "Writing geometries" to the Python Window of my ArcGIS 10.0 - see the following:... >>> # Create a new line feature class using a text file of coordinates.
... # Each coordinate entry is semicolon delimited in the format of ID;X;Y
... # Import ArcPy and other required modules
... #
... import arcpy
... from arcpy import env
... import fileinput
... import string
... import os
... env.overwriteOutput = True
... # Get the coordinate ASCII file
... #
... infile = arcpy.GetParameterAsText(0)
... # Get the output feature class
... #
... fcname = arcpy.GetParameterAsText(1)
... # Get the template feature class
... #
... template = arcpy.GetParameterAsText(2)
... try:
... # Create the output feature class
... #
... arcpy.CreateFeatureclass_management(os.path.dirname(fcname),
... os.path.basename(fcname),
... "Polyline", template)
... # Open an insert cursor for the new feature class
... #
I am lost now. Please kindly help and enlighten me in handling the above-mentioned 2 problems.Thanks in advance,Scott Chang