<buffers_uri>/{jobID}[.<format>]
buffersJob resource represents a buffer analysis job. By sending a GET request to buffersJob, you can get a buffer analysis job's detailed configuration information, which can be retrieved by {jobID}.
Supported Methods:
Supported output formats: RJSON, JSON, HTML, XML.
Execute HTTP request on the following URI, here we take rjosn as the output format as an example. Where, supermapiserver is the server name.
http://supermapiserver:8090/iserver/services/distributedanalyst/rest/v1/jobs/spatialanalyst/buffers/{jobID}.rjson
Gets a buffer analysis job's detailed configuration information.
After executing a GET request on the resource, the response fields are as follows:
Field | Type | Description |
id | String | Application ID. |
state | Jobstate | The status of the task. Including execution status, start time, time consuming, and so on. |
setting | JobSetting | Lists the detailed information of the current buffer analysis job. |
Execute a GET request on buffersJob resource: http://supermapiserver:8090/iserver/services/distributedanalyst/rest/v1/jobs/spatialanalyst/buffers/9931e83c_0ec5_44d5_b2d1_55ac2be50ec0.rjson, then the returned result in rjson format is as follows:
{
"id": "9931e83c_0ec5_44d5_b2d1_55ac2be50ec0",
"setting": {
"DEFAULT_MASTER_ADRESS": "local[*] ",
"analyst": {
"bounds": "-74.050,40.650,-73.850,40.850",
"dissolveField": "LocationID",
"distance": "",
"distanceField": "",
"distanceUnit": "Meter"
},
"appName": "CreateBuffers",
"args": [
"--input",
"{\"sliceNum\":20,\"type\":\"udb\",\"info\":[{\"server\":\"F:\\\\1.package\\\\20171014\\\\supermap_iserver_901_15413_4668_win64_zip\\\\samples\\\\data\\\\ProcessingData\\\\processing.udb\",\"datasetNames\":[\"newyorkZone_R\"]}]}",
"--distanceUnit",
"Meter",
"--bounds",
"-74.050,40.650,-73.850,40.850",
"--dissolveField",
"LocationID",
"--output",
"{\"server\":\"192.168.120.21\",\"password\":\"supermap\",\"database\":\"supermap2\",\"datasetName\":\"analystResult_1747644361\",\"blockingWrite\":null,\"type\":\"pg\",\"user\":\"postgres\"}"
],
"contextSetting": null,
"input": {
"datasetInfo": {
"available": true,
"bounds": "Left=-74.25551784310493,Bottom=40.496084221255856,Right=-73.70014827248451,Top=40.91538866049913",
"datasetName": "newyorkZone_R",
"datasetType": "REGION",
"epsgCode": 4326,
"name": "samples_processing_newyorkZone_R",
"readOnly": false,
"type": "UDB",
"url": "../../samples/data/ProcessingData/processing.udb"
},
"datasetName": "samples_processing_newyorkZone_R",
"numSlices": 0
},
"mainClass": "com.supermap.bdt.main.CreateBuffersMain",
"output": {
"datasetName": "analystResult_1747644361",
"datasourceInfo": {
"alias": "supermap2_pg",
"connect": true,
"dataBase": "supermap2",
"driver": "PostgreSQL ANSI",
"engineType": "POSTGRESQL",
"exclusive": false,
"openLinkTable": false,
"password": "supermap",
"readOnly": false,
"server": "192.168.120.21",
"user": "postgres"
},
"outputPath": "F:\\1.package\\20171014\\supermap_iserver_901_15413_4668_win64_zip\\webapps\\iserver\\processingResultData\\Analyst\\9931e83c_0ec5_44d5_b2d1_55ac2be50ec0\\buffers.smwu",
"type": "pg"
},
"serviceInfo": {
"targetDataPath": "F:\\1.package\\20171014\\supermap_iserver_901_15413_4668_win64_zip\\webapps\\iserver\\processingResultData\\Analyst\\9931e83c_0ec5_44d5_b2d1_55ac2be50ec0\\buffers.smwu",
"targetServiceInfos": [
{
"serviceAddress": "http://supermapiserver:8090/iserver/services/data-buffers10/rest",
"serviceType": "RESTDATA"
},
{
"serviceAddress": "http://supermapiserver:8090/iserver/services/map-buffers10/rest",
"serviceType": "RESTMAP"
}
]
},
"serviceRoot": "http://supermapiserver:8090/iserver/services/",
"sparkLogFile": null
},
"state": {
"elapsedTime": 10427,
"endState": true,
"endTime": 1508222314470,
"errorMsg": null,
"errorStackTrace": null,
"publisherelapsedTime": 3884,
"runState": "FINISHED",
"startTime": 1508222300005
}
}
Returns the same HTTP response header as the GET request, but no response entity, which can be used to retrieve the meta data contained in response message header without having to transmit the entire response content. Meta data information includes media type, character coding, compression coding, entity content length, etc.
HEAD request is used to determine whether the buffersJob resource exists, or if the user has the authority to access it. By executing an HEAD request with a .<format> URI, you can quickly determine whether the buffersJob resource supports the <format> representation.