Convert Feature to Raster

URL:
https://<root>/<serviceName>/RasterAnalysisTools/GPServer/ConvertFeatureToRaster
Methods:
GET
Version Introduced:
10.5

Description

Convert Feature to Raster diagram

The ConvertFeatureToRaster task converts a point, line, or polygon feature dataset to a raster.

Request parameters

ParameterDetails

inputFeature (Required)

The feature layer that will be converted. The dataset can either be point, line, or polygon features.

Syntax: This parameter can be specified as a URL to a feature service layer with an optional filter to select specific features, or a feature collection.

Input feature examples:

Use dark colors for code blocksCopy
1
2
3
4
//Feature layer url
"inputFeature":{"url":<feature service layer url> "filter":<where clause>}
//Feature collection
"inputFeature":{"layerDefinition": {}, "featureSet":{}, "filter": <where clause>}

outputName (Required)

The name of the output image service that will be created.

You can specify the name, or you can create an empty service using Portal Admin Sharing API and use the return JSON object as input to this parameter.

Syntax: A JSON object describes the name of the output or the output raster.

Output name example:

Use dark colors for code blocksCopy
1
"outputName":{"serviceProperties":{"name":"testrasteranalysis"}}

Output raster examples:

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
//Output portal item:
"outputName":{"itemId": <portal item id>}

//Output url:
"outputName":{"url": <image service url}

//Output raster layer service:
"outputName":{"serviceProperties":
  {"name":"testrasteranalysis",
    "serviceUrl":"https://<server name>/server/rest/services/Hosted/testrasteranalysis/ImageServer"},
  "itemProperties":{"itemId":"8cfbd3ec25584d0d8f4ed23b8ff7c43b","folderId":"sdfwerfbd3ec25584d0d8f4"}
}

outputCellSize (Required)

The cell size that will be used for the output raster.

The default value for this parameter is the same as the analysis environment.

Supported units: Meters | Kilometers | Feet | Miles | FeetInt | MilesInt

Example:

Use dark colors for code blocksCopy
1
"outputCellSize":{"distance":60,"units":meters}

valueField (Optional)

The field on the input feature, either an integer or a string field, that will be converted.

Example:

Use dark colors for code blocksCopy
1
"valueField": Landuse

context (Optional)

Contains additional settings that affect task processing. This task has the following settings:

  • Extent (extent )—A bounding box that defines the analysis area.

  • Output Spatial Reference (outSR )—The output raster will be projected into the output spatial reference.

  • Snap Raster (snapRaster )—The output raster will have its cells aligned with the specified snap raster.

  • Cell Size (cellSize )—The output raster will have the resolution specified by cell size.

  • Mask (mask)—Only cells that fall within the analysis mask will be considered in the operation.

f

The response format. The default response format is html .

Values: html | json | pjson

Response

When you submit a request, the task assigns a unique job ID for the transaction.

Use dark colors for code blocksCopy
1
2
3
4
{
  "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:

Use dark colors for code blocksCopy
1
https://<raster analysis tools url>/ConvertFeatureToRaster/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:

Use dark colors for code blocksCopy
1
https://<raster analysis tools url>/ConvertFeatureToRaster/jobs/<jobId>/results/outputRaster

Example usage

Below is a sample request URL for ConvertFeatureRaster .

Use dark colors for code blocksCopy
1
https://services.myserver.com/arcgis/rest/services/System/ConvertFeatureToRaster/GPServer/submitJob

JSON response example

The response returns the outputRaster 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.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
{
  "paramName": "outRaster",
  "dataType": "GPString",
  "value": {
    "itemId": "f121390b85ef419790479fc75b493efd",
    "url": "https://<server name>/arcgis/rest/services/Hosted/<service name>/ImageServer"
  }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.