Generate Raster
- URL:https://<rasteranalysistools-url>/GenerateRaster
- Related Resources:Add Image, Calculate Density, Calculate Distance, Calculate Travel Cost,Classify, Classify Pixels Using Deep Learning, Convert Feature to Raster, Convert Raster to Feature, Copy Raster, Create Image Collection, Create Viewshed, Delete Image, Delete Image Collection, Detect Objects Using Deep Learning, Determine Optimum Travel Cost Network, Determine Travel Cost Paths to Destinations, Determine Travel Cost Path as Polyline, Export Training Data for Deep Learning, Fill, Flow Accumulation, Flow Direction, Flow Distance, Install Deep Learning Model, Interpolate Points, List Deep Learning Model Info, Nibble, Query Deep Learning Model Info, Segment, Stream Link, Summarize Raster Within, Train Classifier, Uninstall Deep Learning Model, Watershed
- Version Introduced:10.6.1
Description

The Generate Raster task is a service that allows you to execute raster analysis on a distributed server deployment. The analysis can be specified either with a predefined server raster function keyword, or by giving a JSON object representation of a raster function chain.
Request parameters
Parameter | Details |
|---|---|
| rasterFunction (Required) | Raster function to perform analysis on the input raster dataset. The value can be a string keyword for predefined raster functions such as NDVI, a JSON object that describes a raster function chain with a built-in functions that are known to the server, or the contents of a raster function template file (*.rft.xml) Please refer to the complete list of Raster Analysis functions to execute on a distributed server. |
| outputRaster (Required) | The location where the service will generate the output raster. Syntax: A JSON object describes the output raster. Example: |
| rasterArguments | The JSON string to specify the raster function arguments' value. It is optional because the argument value can also be defined in the function template. The rasterArguments parameter supports the RasterInfo argument for all raster functions. The information stored in RasterInfo allows you to specify the output raster dataset's properties such as cell size, extent, and nodata. This parameter is optional as the arguments value can also be defined in the function template. |
| rasterProperties | The rasterProperties setting can be used to set the output raster's key metadata properties. |
| context | Contains the additional setting Output Spatial Reference (outSR), which specifies where the output will be projected into the output spatial reference. |
| f | The response format. The default response format is html. Values: html | json |
Response
When you submit a request, the task assigns a unique job ID for the transaction.
Syntax:
{
"jobId": "<unique job identifier>",
"jobStatus": "<job status>"
}
After the initial request is submitted, you can use the jobId to periodically check the status of the job and messages as described in Checking job status. Once the job has successfully completed, you use the jobId to retrieve the results. To track the status, you can make a request of the following form:
https://<raster analysis tools url>/GenerateRaster/jobs/<jobId>
When the status of the job request is esriJobSucceeded, you can access the results of the analysis by making a request of the following form:
https://<raster analysis tools url>/GenerateRaster/jobs/<jobId>/results/outRaster
Example usage
The following is a sample request url for GenerateRaster:
https://services.myserver.com/arcgis/rest/services/System/RasterAnalysisTools/GPServer/GenerateRaster/submitJob
JSON request example
rasterFunction=NDVI&
outputRaster={"itemId": "780d648db3545bba8861ad98df824a4"}&
rasterArguments={"Raster": {"itemId": "04180233981a4b978755d854687e149e"},"VisibleBandID":"3","InfraredBandID":"4"}&
rasterProperties={"SensorName": "Landsat 8", "CloudClover": 20}
JSON response example
The response returns the outRaster output parameter, which has properties for parameter name, data type, and value. The content of value is always the output raster dataset itemId and the image service url.
{
"paramName": "outRaster",
"dataType": "GPString",
"value": {
"itemId": "f121390b85ef419790479fc75b493efd",
"url": "https://<server name>/arcgis/rest/services/Hosted/<service name>/ImageServer"
}
}