Hello,
I'm trying to project a feature class and save the output to the memory workspace. However, it seems that outputs from the Project tool can't be stored in the memory workspace. I figured I could get around this by setting my arcpy.env.outputCoordinateSystem, then running FeatureClasstoFeatureClass, and storing the output in the memory workspace. That seems to work just fine.
To check that it is indeed working properly, I've also created a GDB feature class with the Project tool. Then, I calculate geometry for both the memory workspace output and the GDB feature class, and compare the values.
I get identical geometry values when I run this code from a script tool, but when I run the same code from a Python terminal I get slightly different values. Is there something different about these two environments that I'm unaware of? Also, is there a better way to project a feature class and store the output in the memory workspace?
Thanks!