Can anyone see anything wrong with the following code?I'm not getting any intersections even though I know that point is definitely within myFeatureLayer.How does that deal with projection?pt = arcpy.Point(x,y)
ptGeometry = arcpy.PointGeometry(pt)
cur = arcpy.SearchCursor(myFeaturelayer)
for arow in cur:
geom = arow.shape
if ptGeometry .touches(geom):
arcpy.AddMessage("intersects")
break