Feature to Raster (Conversion)
Summary
Converts features to a raster dataset.
Usage
-
Any feature class (geodatabase, shapefile or coverage) containing point, line, or polygon features can be converted to a raster dataset.
-
The input field type determines the type of output raster. If the field is integer, the output raster will be integer; if it is floating point, the output will be floating point.
-
This tool always uses the cell center to decide the value of a raster pixel. If more control over how different types of input feature geometries are to be converted, please refer to the respective specific conversion tools: Point to Raster, Polyline to Raster, and Polygon to Raster.
-
This tool is a complement to the Raster to Point, Raster to Polyline, and Raster to Polygon tools, which convert a raster to different types of feature dataset geometries.
Syntax
Parameter | Explanation | Data Type |
in_features |
The input feature dataset to be converted to a raster dataset. | Feature Layer |
field | The field used to assign values to the output raster. It can be any field of the input feature dataset's attribute table. If the Shape field of a point or multipoint dataset contains z or m values, then either of these can be used. | Field |
out_raster | The output raster dataset to be created. When not saving to a geodatabase, specify .tif for a TIFF file format, .img for an ERDAS IMAGINE file format, or no extension for a GRID raster format. | Raster Dataset |
cell_size (Optional) | The cell size for the output raster dataset. The default cell size is the shortest of the width or height of the extent of the input feature dataset, in the output spatial reference, divided by 250. | Analysis Cell Size |
Code Sample
Converts features to a raster dataset.
import arcpy from arcpy import env env.workspace = "c:/data" arcpy.FeatureToRaster_conversion("roads.shp", "CLASS", "c:/output/roadsgrid", 25)
Converts features to a raster dataset.
# Name: FeatureToRaster_Ex_02.py # Description: Converts features to a raster dataset. # Requirements: None # Import system modules import arcpy from arcpy import env # Set environment settings env.workspace = "C:/data" # Set local variables inFeature = "roads.shp" outRaster = "c:/output/roadsgrd" cellSize = 25 field = "CLASS" # Execute FeatureToRaster arcpy.FeatureToRaster_conversion(inFeature, field, outRaster, cellSize)