I am trying to Project a shapefile that is defined as GCS_WGS_1984 but I keep getting the error ERROR 000365: Invalid geographic transformation.
Here is my code:
import arcpy
input_features = "D:/buildings/BuildingPoint.shp"
output_features_class = "D:/buildings/BuildingPoint_proj.shp"
out_coordinate_system = "C:/Program Files (x86)/ArcGIS/Desktop10.0/Coordinate Systems/Projected Coordinate Systems/State Plane/NAD 1983 (US Feet)/NAD 1983 StatePlane Colorado Central FIPS 0502 (US Feet).prj"
transform_method = "NAD_1983_To_WGS_1894_1"
arcpy.Project_management(input_features, output_features_class, out_coordinate_system, transform_method)