world,
I'm having trouble to insert a line geometry into a personal geodatabase (using Python/ArcGIS 9.3.1). Everything works fine if the target feature is a shapefile. My guess is that calling:
traj.shape = lineArray
is causing the exception:
File "C:\Python27\lib\site-packages\win32com\client\dynamic.py", line 570,
in __setattr__ raise AttributeError("Property '%s.%s' can not be set." %
(self._username_, attr))AttributeError: Property '<unknown>.shape' can not be set.
However, lineArray holds the coordinates of the vertexes. To populate a new row I call:
newTraj = rowInserter.newRow()
newTraj.shape = lineArray
rowInserter.insertRow(newTraj)
lineArray.RemoveAll()
del rowInserter
Is there maybe someone with some experience on this topic? Thanks for your help in advance,
Lars