Hi all,
Is it possible to transform a Geometry object with a spatialreference to another coordinate system directly? I know i can store the geometry object to featrueclass and use project_management tool to do that, but that's too trivial .
Solved! Go to Solution.
Use the geometry method projectAs
like :
geom2 = geom1.projectAs(newSr) # newSr is a spatial reference object
Thank you Ayres. That's what I need.
Use the projectAs method as described here: Geometry—Help | ArcGIS for Desktop
Yes it is. Thank you Basson.
Additional code examples for project as in this thread.