At the end of a script I run a Projection, but I keep getting the following Error
PYTHON ERRORS:
Traceback info:
File "G:\Scripts\BARRIER_MERGE_edits.py", line 48, in <module>
arcpy.Project_management(GRADIENT_BAR_PT, GRADIENT_BARH83, outCS, CSTRANS)
Error Info:
ERROR 000622: Failed to execute (Project). Parameters are not valid.
ERROR 000628: Cannot set input into parameter out_coor_system.
Here is a piece of the script and the defined variables:
Any ideas on where I am going wrong here? I appreciate the help!!
PYTHON ERRORS:
Traceback info:
File "G:\Scripts\BARRIER_MERGE_edits.py", line 48, in <module>
arcpy.Project_management(GRADIENT_BAR_PT, GRADIENT_BARH83, outCS, CSTRANS)
Error Info:
ERROR 000622: Failed to execute (Project). Parameters are not valid.
ERROR 000628: Cannot set input into parameter out_coor_system.
Here is a piece of the script and the defined variables:
Code:
outCS = "NAD_1983_HARN_StatePlane_Washington_South_FIPS_4602_Feet"
CSTRANS = '"NAD_1927_To_NAD_1983_NADCON", "NAD_1983_To_HARN_WA_OR"'
arcpy.Project_management(GRADIENT_BAR_PT, GRADIENT_BARH83, outCS, CSTRANS)