Skip To Content
ArcGIS Developer
Dashboard

Cell Size

Raster analysis tasks that have the cellSize property in their context parameter will set the cell size that will be used to create the output raster. The default output resolution is determined by the largest cell size of all the input rasters.

Cell Size syntax for coarsest pixel size:

{"cellSize": "MAXOF"}

There are several options to set the cellSize:

  • url—Sets the cell size to the raster layer specified in the URL.
  • <value>—Specify a numeric value for the pixel size.

Cell Size syntax for cell size of specific raster layer:

{"cellSize": {
  "url": "https://<servername.domain.com>/arcgis/rest/services/<servicename>/ImageServer"}
}

Cell Size syntax for specific raster resolution:

{"cellSize": 50}

Related topics