Mit der Image Analyst-Lizenz verfügbar.
Zusammenfassung
Computes a forecasted multidimensional raster object using the output trend raster from the GenerateTrend function.
Auswertung
For more information about how this function works, see the Predict Using Trend raster function.
The referenced raster dataset for the raster object is temporary. To make it permanent, you can call the raster object's save method.
Syntax
PredictUsingTrend (raster, {dimension_definition_type}, {dimension_values}, {start}, {end}, {interval_value}, {interval_unit})
Parameter | Erklärung | Datentyp |
raster | The input trend raster from the GenerateTrend function. | Raster |
dimension_definition_type | Specifies the method to be used to provide prediction dimension values.
(Der Standardwert ist BY_VALUE) | String |
dimension_values [dimension_values,...] | The dimension value or list of values to be used in the prediction. The format of the value must match the format of the dimension in the input multidimensional raster. If the trend raster was generated for the StdTime dimension, the format will be YYYY-MM-DDTHH:MM:SS, for example, 2050-01-01T12:00:00. This argument is required when the dimension_def parameter is set to BY_VALUE. (Der Standardwert ist None) | String |
start | The start date, height, or depth of the dimension interval to be used in the prediction. The format of the value must match the format of the dimension in the input multidimensional raster. (Der Standardwert ist None) | String |
end | The end date, height, or depth of the dimension interval to be used in the prediction. The format of the value must match the format of the dimension in the input multidimensional raster. (Der Standardwert ist None) | String |
interval_value | The number of steps between two dimension values to be included in the prediction. The default value is 1. (Der Standardwert ist 1) | Double |
interval_unit | Specifies the unit that will be used for the interval_value argument. This only applies when the dimension of analysis is a time dimension.
(Der Standardwert ist HOURS) | String |
Datentyp | Erklärung |
Raster | The output raster. |
Codebeispiel
This example generates the forecasted NDVI values for each month in the year 2025.
# Import system modules
import arcpy
from arcpy.ia import *
# Check out the ArcGIS Image Analyst extension license
arcpy.CheckOutExtension("ImageAnalyst")
# Set the local variables
in_raster = "C:/Data/NDVI_Trend.crf"
dimension_def = "BY_INTERVAL"
dimension_values = "None"
start = "2025-01-01T00:00:00"
end = "2025-12-31T00:00:00"
interval_value = 1
interval_unit = "MONTHS"
# Apply PredictUsingTrendRaster function
predicted_raster = arcpy.ia.PredictusingTrend(in_raster, dimension_def,
dimension_values , start, end, interval_value, interval_unit)
# Save the output
predicted_raster.save("C:/arcpyExamples/outputs/predicted_NDVI.crf")