I have a land surface temperature raster file and I want the max and min of it.
minLSTresult = arcpy.GetRasterProperties_management(raster_result, "MINIMUM")
minLST = minLSTresult.getOutput(0)
minLST returns u'261.22', how could I only get the number of it.
Thank you!
أكثر...