Wednesday 24 May 2017

arcpy - Does Avenue equivalent of pointPosition exist in ArcGIS 10.2?


There were a couple of awesome methods in Avenue for ArcView:


point=polyline.Along(percentage)
percentage=polyLine.pointPosition(point)


Don't laugh, but one of the reasons I updated to 10 from 9, was new method for Geometry


point=polyline.positionAlongLine (value,{use_percentage})

that is equivalent of 1st Avenue method (wrong name in my opinion anyway). Does equivalent of the 2nd Avenue method exist in 10.2?



Answer



Yes, it does exist. Use polyline.measureOnLine(point_geometry).


No comments:

Post a Comment

arcpy - Changing output name when exporting data driven pages to JPG?

Is there a way to save the output JPG, changing the output file name to the page name, instead of page number? I mean changing the script fo...