I am converting polygon shapefiles to rasters. With arcpy I am using the function FeatureToRaster_conversion.
gp.FeatureToRaster_conversion(InFeatures, InField, OutRaster, InCellSize)
This function gives control of the cell size but nothing concerning the rotation.
I would like the output raster with a given orientation other than North. Say for example having the picture at 45 degrees.
Any ideas how I can achieve this? With or without using FeatureToRaster_conversion.