Hello,
I am attempting to loop over a centerline shapefile and pull out specific values per field value to set as a new row value in another shapefile.
However, the code fails when the returned value is null, even when using the isNull() method as so:
http://help.arcgis.com/en/arcgisdesk...0000001q000000
Has anyone run into this problem with this method before?
I am attempting to loop over a centerline shapefile and pull out specific values per field value to set as a new row value in another shapefile.
However, the code fails when the returned value is null, even when using the isNull() method as so:
http://help.arcgis.com/en/arcgisdesk...0000001q000000
Code:
if not self.centerline.isNull(suffix):
self.newStreet.S_suffix = self.centerline.getValue(suffix)