You are on page 1of 1

arcpy.gp.RasterCalculator_sa('0.000342 * "B11" + 0.

1',
"D:/TNBTS_GIS_RS/Maxent_Training/Proses/Land_Temp/Radiance11")

arcpy.gp.RasterCalculator_sa('(1321.0789 / Ln(774.8853 / "Radiance10" + 1)) - 273.15',


"D:/TNBTS_GIS_RS/Maxent_Training/Proses/Land_Temp/tebr10")

arcpy.gp.RasterCalculator_sa('(1321.0789 / Ln(774.8853 / "Radiance11" + 1)) - 273.15',


"D:/TNBTS_GIS_RS/Maxent_Training/Proses/Land_Temp/tebr11")

arcpy.gp.RasterCalculator_sa('(1201.1442 / Ln(480.883 / "Radiance11" + 1)) - 273.15',


"D:/TNBTS_GIS_RS/Maxent_Training/Proses/Land_Temp/tebr11")

arcpy.gp.RasterCalculator_sa('Float("B5" - "B4")/Float("B5" + "B4")',


"D:/TNBTS_GIS_RS/Maxent_Training/Proses/Land_Temp/NDVI")

arcpy.gp.RasterCalculator_sa('Square("NDVI" + 0.091599) / (0.632497 + 0.091599)',


"D:/TNBTS_GIS_RS/Maxent_Training/Proses/Land_Temp/PV1")

arcpy.gp.RasterCalculator_sa('0.004 * "PV1" + 0.986',


"D:/TNBTS_GIS_RS/Maxent_Training/Proses/Land_Temp/Em")

arcpy.gp.RasterCalculator_sa('"tebr10" / (1 + (10.8 * "tebr10" / 14388) * Ln("Em"))',


"D:/TNBTS_GIS_RS/Maxent_Training/Proses/Land_Temp/LST10")

arcpy.gp.RasterCalculator_sa('"tebr11" / (1 + (12 * "tebr11" / 14388) * Ln("Em"))',


"D:/TNBTS_GIS_RS/Maxent_Training/Proses/Land_Temp/LST11")

arcpy.gp.CellStatistics_sa("LST10;LST11",
"D:/TNBTS_GIS_RS/Maxent_Training/Proses/Land_Temp/MeanLST1011", "MEAN", "DATA")

# Replace a layer/table view name with a path to a dataset (which can be a layer file) or create the
layer/table view within the script
# The following inputs are layers or table views: "MeanLST1011"
arcpy.RasterToASCII_conversion(in_raster="MeanLST1011",
out_ascii_file="D:/TNBTS_GIS_RS/Maxent_Training/Proses/Ascii/LST.ASC")

You might also like