Summary
This tool creates an empty feature class in a database or enterprise geodatabase. The feature class is not registered with the geodatabase.
Usage
This tool creates only simple feature classes such as point, multipoint, polygon, and polyline. Custom feature classes such as annotation, dimensions, and relationship class are created in the Catalog window or in ArcCatalog.
An empty feature class created by this tool will have either a field named OBJECTID of type integer or will contain the same field names and types of any selected input template feature class.
This tool can only be run as a foreground process.
Syntax
arcpy.management.CreateUnRegisteredFeatureclass(out_path, out_name, {geometry_type}, {template}, {has_m}, {has_z}, {spatial_reference}, {config_keyword})
Parameter | Explanation | Data Type |
out_path | The enterprise geodatabase or database in which the output feature class will be created. | Workspace;Feature Dataset |
out_name | The name of the feature class to be created. | String |
geometry_type (Optional) | The geometry type of the feature class. Only relevant for those geometry types that store dimensionality metadata, such as ST_Geometry in PostgreSQL, PostGIS Geometry, and Oracle SDO_Geometry.
| String |
template [template,...] (Optional) | An existing feature class or layer to use as a template to define the attribute schema of the output feature class. | Feature Layer |
has_m (Optional) | Determines if the feature class contains linear measurement values (m values).
| String |
has_z (Optional) | Determines if the feature class contains elevation values (z values).
| String |
spatial_reference (Optional) |
The spatial reference of the output feature dataset. You can specify the spatial reference in the following ways:
| Spatial Reference |
config_keyword (Optional) | Determines the storage parameters of the feature class in an enterprise geodatabase. | String |
Code sample
CreateUnRegisteredFeatureclass example (Python window)
The following Python window script demonstrates how to use the CreateUnRegisteredFeatureclass tool in immediate mode.
import arcpy
arcpy.CreateUnRegisteredFeatureclass_management(r'Database Connections\Connection to Organization.sde',
'New_FC', 'POINT', '', 'DISABLED', 'DISABLED')
Environments
Licensing information
- Basic: Yes
- Standard: Yes
- Advanced: Yes