spatialanalystJobs


URI

<processingJobs_uri>/spatialanalyst[.<format>]

Supported methods

GET, HEAD

Parent resource

processingJobs

Child resources

aggregatePoints, density, query, vectorClip, summaryRegion, topologyValidator, featureJoin, buffers, overlay, summaryAttributes

Introduction

Distributed spatial analysis job root directory.

Supported Methods:

Supported output formats: rjson, json, html, xml.

Resource hierarchy

HTTP request methods

Implement the HTTP request on the following URI, where supermapiserver is the server name, with rjson being the output format.

http://supermapiserver:8090/iserver/services/distributedanalyst/rest/v1/jobs/spatialanalyst.rjson

GET request

Gets the entry of distributed spatial analysis job.

Response structure

The GET request on spatialanalystJobs resource is a data processing resource descriptive collection in the entity of response messaging, where the structure of a single resource description is as follows:  

Field Type Description
name String The name of the spatial analysis job.
path String Resource URL.
resourceConfigID String The configuration item ID of the resource.
resourceType String The resource type.
supportedMediaTypes String[] The media-type of the supported representation.

Response example

The returned rjson format representation after implementing the GET request on the spatialanalystJobs resource is as follows:

[{

  "name": "kernelDensityJobs",

  "path": "http://supermapiserver:8090/iserver/services/distributedanalyst/rest/jobs/spatialanalyst/kernelDensity",

  "resourceConfigID": null,

  "resourceType": null,

  "supportedMediaTypes": null

}]

HEAD request

Returns the same HTTP response header as the GET request, but does not have the response entity. It can get the metadata information in the response header without transferring the whole response content. Metadata information includes media type, character encoding, compression encoding, entity content length, and so on.

The HEAD request can be used to determine whether the spatialanalystJobs resource exists or whether the client has authority to access the resource. It can quickly determine whether the spatialanalystJobs resource supports the representation in <format> format by performing HEAD request on URI with <format>.

See