ERROR 000365: Invalid geographic transformation.

4030
3
04-25-2012 12:51 PM
HeatherGarcia
New Contributor
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)
Tags (2)
0 Kudos
3 Replies
BruceNielsen
Occasional Contributor III
You have '1894' in the transform_method. Looks like a typo.
0 Kudos
MathewCoyle
Frequent Contributor
Bruce got is.
0 Kudos
HeatherGarcia
New Contributor
THANK YOU... I have been working on it all day and of course it comes down to one typo! Appreciate it!
0 Kudos