- URL:
- https://<root>/System/RasterAnalysisTools/GPServer/ManageMultidimensionalRaster
- Methods:
GET
- Version Introduced:
- 10.9
Description
The Manage
task edits a multidimensional raster by adding or deleting variables or dimensions.
Request parameters
Parameter | Details |
---|---|
(Required) | The Portal Item ID, Image Service URL, cloud multidimensional raster dataset or shared multidimensional raster dataset. Syntax: JSON object describes the input multidimensional raster. At least one type of input needs to be provided in the JSON object. If multiple inputs are given, the itemid takes the priority. Example:
|
| Specifies the type of modification that will be performed on the target raster:
Syntax: A string representing the manage mode. Example:
|
| The variable or variables that will be modified in the target multidimensional raster. This is required if the operation being performed is a modification of an existing variable. If no variable is specified, the first variable in the target multidimensional raster will be modified Syntax: A list of variables. Multiple variables are separated by comma. Example:
|
| List of input rasters. The input raster can be the Portal Item ID, Image Service URL, cloud raster dataset or shared multidimensional raster dataset. This is required when At least one type of input needs to be provided in the JSON object. If multiple inputs are given. The Syntax: A JSON object describing the input rasters. Example:
|
| The name of the dimension to be added to the dataset. This is required if Syntax: A string containing the name of the dimension. Example:
|
| The value of the dimension to be added. This is required if Syntax: A string representing the value of the dimension name. Example:
|
| The description of the dimension to be added. This is required if Syntax: A string describing the dimension. Example:
|
| The unit of the dimension to be modified. Example:
|
| Contains additional settings that affect task execution. This task has the following settings:
Example:
|
| The response format. The default response format is Values: |
Response
When you submit a request, the task assigns a unique job ID for the transaction.
Syntax:
{ "jobId": "<unique job identifier>", "jobStatus": "<job status>" }
After the initial request is submitted, you can use the job
to periodically check the status of the job and messages, as described in Checking job status. Once the job has successfully completed, use the job
to retrieve the results. To track the status, you can make a request of the following form:
https://<analysis-url>/ManageMultidimensionalRaster/jobs/<jobId>
Accessing results
When the status of the job request is esri
, you can access the results of the analysis by making a request of the following form:
https://<raster analysis url>/ManageMultidimensionalRaster/jobs/<jobId>/results/updatedTargetMultidimensionalRaster?token=<your token>&f=json
Parameter | Details |
---|---|
| The output multidimensional raster Example:
The result has properties for parameter name, data type, and value. The content of the value is always the output raster dataset's
|