Hello,i want to convert all rasterdatasets from tif to png. These rasterdataset are part of a rastercatalog.This is a my code snippet that works pretty well. datasetList = arcpy.ListDatasets("*","All")
for dataset in datasetList:
arcpy.RasterToOtherFormat_conversion(arcpy.Describe(dataset).file,test_PNG","PNG")
But i don't know to rename the rasterdatasets from 1.tif to 1.pngI tried describe.file and describe.name but there ist only: Raster.OBJECTID=404. I can't find the real name that is shown in the column called "name".Any suggestions?