For ListRasters, there's no geodatabase raster type option in the parameter for setting the raster type, so how do I do this? Thanks!
Dan
Solved! Go to Solution.
No need to set raster type to list raster in GDB.
arcpy.env.workspace = r"C:\rasters.gdb"
rasterList = arcpy.ListRasters()
print rasterList
No need to set raster type to list raster in GDB.
arcpy.env.workspace = r"C:\rasters.gdb"
rasterList = arcpy.ListRasters()
print rasterList
thanks Paul