Show Navigation | Hide Navigation
You are here:
Geoprocessing tool reference > Data Management toolbox > Projections and Transformations toolset > Feature tools

Project (Data Management)

Release 9.3
Last modified March 8, 2012
E-mail This Topic Printable Version Give Us Feedback

Print all topics in : "Feature tools"


Related Topics

NOTE: This topic was updated for 9.3.1.


Changes the coordinate system of your Input Dataset or Feature Class to a new Output Dataset or Feature Class with the newly defined coordinate system including the datum and spheroid


Usage tips

Command line syntax
An overview of the Command Line window
Project_management <in_dataset> <out_dataset> <out_coor_system> {transform_method;transform_method...} {in_coor_system}

Parameter Explanation Data Type
<in_dataset>

The feature class whose coordinates are to be converted.

Feature Layer | Feature Dataset
<out_dataset>

The feature class whose coordinates have been converted into the new coordinate system.

Geodataset
<out_coor_system>

The coordinate system to be applied to the Output Dataset or Feature Class.

Coordinate System
{transform_method;transform_method...}

A method for converting data between two geographic coordinate systems or datums. Depending on the input and output coordinate systems, this parameter may be required. For more information on geographic transformations, see Geographic transformation methods.

String
{in_coor_system}

The coordinate system of the Input Dataset or Feature Class.

Coordinate System
Data types for geoprocessing tool parameters


Command line example

Project_management c:\test_data\dams C:\test_data\dams_projected.shp 'Coordinate Systems\Projected Coordinate Systems\Utm\Nad 1927\NAD 1927 UTM Zone 14N.prj'  NAD_1927_To_NAD_1983_NTv2_Canada

Scripting syntax
About getting started with writing geoprocessing scripts
Project_management (in_dataset, out_dataset, out_coor_system, transform_method, in_coor_system)

Parameter Explanation Data Type
in_dataset (Required)

The feature class whose coordinates are to be converted.

Feature Layer | Feature Dataset
out_dataset (Required)

The feature class whose coordinates have been converted into the new coordinate system.

Geodataset
out_coor_system (Required)

The coordinate system to be applied to the Output Dataset or Feature Class.

Coordinate System
transform_method (Optional)

A method for converting data between two geographic coordinate systems or datums. Depending on the input and output coordinate systems, this parameter may be required. For more information on geographic transformations, see Geographic transformation methods.

String
in_coor_system (Optional)

The coordinate system of the Input Dataset or Feature Class.

Coordinate System

Data types for geoprocessing tool parameters


Script example

# Create the Geoprocessor Object
import arcgisscripting
gp = arcgisscripting.create()

# Set the workspace
GP.workspace = "c:/Test_data/Personal GDB/canada.mdb"

# Set the Toolbox
GP.toolbox = "management"

# Set the spatial reference variable
cs = "C:/ArcGIS/Coordinate Systems/Geographic Coordinate Systems/North America/North American Datum 1983.prj"

# Run tool in a try and except
try:
    GP.project (GP.workspace + "/prov/province_buffer1", "province_buffer5", cs, "NAD_1927_To_NAD_1983_NTv2_Canada")

except:
    print GP.GetMessages(2)

Please visit the Feedback page to comment or give suggestions on ArcGIS Desktop Help.
Copyright © Environmental Systems Research Institute, Inc.