Thanks for the help. I´ve found a free training (Using Python in ArcGIS Desktop 10) ,too. But I totally got no clue about programming and python. Therefore I need some help to find a starting point.
So e.g. I want to slope my input Raster (Elev) into a output (SlpDeg) and the unit is Degree. This is the code from ArcGis10 Help:
import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
outSlope = Slope("elevation", "DEGREE", 0.3043)
outSlope.save("C:/sapyexamples/output/outslope01")
And I modified it this way
import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "Elev"
outSlope = Slope("elevation", "DEGREE", 0.3043) ???
outSlope.save("SlpDeg")
How to modify the outSlope?
Thanks
Greetings
m