FRAMES | NO FRAMES Description | Parameters | Examples | Response
Raster File
URL http://<imageservice-url>/file
Parent Resource Image Service
Required Capability Catalog,Download

Description

The raster file resource represents a single raw raster file. The id required to request the file can be obtained by using the Download Rasters operation.

This resource streams the file contents to the client.

Resource Hierarchy

Raster File

Parameters

Parameter Details
id Required
Description: The ID of the raster file. This ID is obtained by using the Download Rasters operation.

Example: Suppose the Download Rasters operation returned the following response:

{
  "rasterFiles": [
   {
    "id": "t1923.png",
    "rasterIds": [54],
    "size": 65417
   },
   {
    "id": "t1923.pgw",
    "rasterIds": [54],
    "size": 765368
   },
   {
    "id": "t1923.png.aux.xml",
    "rasterIds": [54],
    "size": 853
   },
   {
    "id": "t1928",
    "rasterIds": [60],
    "size": 786296
   }
  ]
}


You can download the 2nd file from above by specifying its id as the query parameter for this resource: id=t1923.pgw
rasterId Required
Description: The object ID of the raster item. This ID is obtained by using the Download Rasters operation. It is required if the source raster is GRID, WCS, or geodatabase raster.

Example: You can download the 4th raster from above by specifying its id and rasterId as the query parameters for this resource: id=t1928&rasterId=60

Example Usage

Example 1: Access raster file resource for id: http://servername/1n2w13w.jpg

http://servername/ArcGIS/rest/services/ImageServiceName/ImageServer/file?id=http://servername/1n2w13w.jpg&rasterId=61

Example 2: Access a geodatabase raster resource

http://servername/ArcGIS/rest/services/ImageServiceName/ImageServer/file?id=t1928&rasterId=60

JSON Response Syntax

N/A

JSON Response Example

N/A