The Find Centroids task finds and generates points from the representative center (centroid) of each input multipoint, line, or area feature. Finding the centroid of a feature is common for many analytical workflows in which the resulting points can then be used in other analytic workflows.
For example, polygon features that contain demographic data can be converted to centroids that can be used in network analysis.
Request URL
http://<analysis url>/FindCentroids/submitJob
Request parameters
Parameter | Description |
---|---|
| The multipoint, line, or polygon features that will be used to generate centroid point features. Syntax: As described in detail in the Feature input topic, this parameter can be one of the following:
Examples:
|
| A Boolean value that determines the output location of the points. Values:
Example: |
|
If provided, the task will create a feature service of the results. You define the name of the service. If an Syntax:
In ArcGIS Online or ArcGIS Enterprise 10.9.1 and later, you can overwrite an existing feature service by providing the Syntax:
or
|
|
The Context parameter contains the following additional settings that affect task operation:
Syntax:
|
| The response format. The default response format is Values: |
Response
When you submit a request, the service 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 the Check job status topic. 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:
http://<analysis url>/FindCentroids/jobs/<jobId>
Results access
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:
http://<analysis url>/FindCentroids/jobs/<jobId>/results/outputLayer?token=<your token>&f=json
Parameter | Description |
---|---|
| The centroid points. Example:
The result has properties for parameter name, data type, and value. The contents of value depend on the
See Feature Output for more information about how the result layer or collection is accessed. |