I am trying to compare a set of point features to the centroid of a single feature polygon using ArcPy. The problem is that the polygon generates a set of XY coordinates in meters, whereas the set of points generates a set of XY coordinates in decimal degrees.
Is there anyway to ensure consistency?
Using some variations of SHAPE@XY@DECIMALDEGREES threw errors. When I do the following:
with arcpy.da.SearchCursor("prim_catch_dissolved", ["TR", "SHAPE@XY"]) as cursor:
I get the results in meters, which is not what I'm after.