Hide Table of Contents
esri/dijit/util
esri/layer/pixelFilters
esri/process
esri/support
esri/workers
Class: AggregatePoints

require(["esri/dijit/analysis/AggregatePoints"], function(AggregatePoints) { /* code goes here */ });

Description

(Added at v3.6)
The AggregatePoints widget works with point feature layer and a polygon feature layer. It first figures out which points fall within each polygon's area. After determining this point-in-polygon spatial relationship, statistics about all points in the polygon are calculated and assigned to the area. These statistics include count, sum, mean, minimum, maximum and standard deviation.

View the ArcGIS REST API documentation for the Aggregate Points task for more details.

Samples

Search for samples that use this class.

Class hierarchy

esri/dijit/analysis/AnalysisBase
|_esri/dijit/analysis/AggregatePoints

Constructors

NameSummary
new AggregatePoints(params, srcNodeRef)Creates a new AggregatePoints dijit using the given DOM node.

CSS

esri/dijit/analysis/AggregatePoints | Download source

Properties

NameTypeSummary
analysisGpServerStringThe URL to the analysis service, for example "http://analysis.arcgis.com/arcgis/rest/services/tasks/GPServer".
folderIdStringSets the selected folder of the select folder dropdown, based on the provided folderId, when showSelectFolder is true.
folderNameStringSets the selected folder of the select folder dropdown, based on the provided folderName, when showSelectFolder is true.
groupByFieldStringA field name from pointLayer based on which the points will be grouped.
keepBoundariesWithNoPointsBooleanWhen true, the polygons that have no points within them will be returned in the output.
mapMapReference to the map object.
minorityMajorityBooleanWhen true, two fields will be added to your result layer to indicate which attribute values within each group are the minority (least dominant) or the majority (most dominant) within each boundary.
outputLayerNameStringThe name of the output layer to be shown in the Result layer name inputbox.
percentPointsBooleanWhen true, a new field will be added to the result table containing the percentages of each attribute value within each group.
pointLayerFeatureLayerThe point feature layer that will be aggregated into the polygons in the polygon feature layer.
polygonLayerFeatureLayerThe polygon layer to be shown selected in in the Choose area menu.
polygonLayersFeatureLayer[]An array of feature layer candidates to be selected as the input polygon layer.
portalSelfObjectThe self response of the Portal.
portalUrlStringThe URL to the ArcGIS.com site or in-house portal where the GP server is hosted, for example "http://www.arcgis.com".
returnFeatureCollectionBooleanWhen true, returns the result of analysis as a client-side feature collection.
showChooseExtentBooleanWhen true, the choose extent checkbox will be shown.
showCloseIconBooleanIndicates whether to show the close icon on the widget's user interface.
showCreditsBooleanWhen true, the show credit option is visible.
showHelpBooleanWhen true, the help links will be shown.
showReadyToUseLayersBooleanWhen true, adds an option to the UI that allows users to choose ready to use analysis layers from the Living Atlas Analysis Layers.
showSelectAnalysisLayerBooleanIndicates whether to display a drop down menu listing valid input analysis layers.
showSelectFolderBooleanWhen true, the select folder dropdown will be shown.
summaryFieldsString[]An array of attribute field names and statistic types that you would like to aggregate for all points within each polygon.
titleStringOverrides the default widget title with a custom title.

Methods

NameReturn typeSummary
cancel(jobInfo)NoneCancels an analysis job that is being processed.
checkJobStatus(jobId)NoneStarts checking the analysis job status for the given jobId.
execute(params)NoneStarts an analysis tool.
getCreditsEstimate(toolName, jobParams)DeferredGets credits estimate for a specific analysis job.
startup()NoneFinalizes the creation of the widget.

Events

[ On Style Events | Connect Style Event ]
All On Style event listeners receive a single event object. Additionally, the event object also contains a 'target' property whose value is the object which fired the event.

Events

NameEvent ObjectSummary
closeFires when close icon is clicked or when run analysis button is clicked.
job-cancel
{
  response: <Object>
}
Fires when the job in cancelled.
job-fail
{
  error: <Object>
}
Fires when the job fails.
job-result
{
  result: <Object>
}
Fires after the job fetches result data.
job-status
{
  jobInfo: <Object>
}
Fires when the job execution status is received.
job-submit
{
  params: <Object>
}
Fires when the job is submitted to the server for asynchronous processing.
job-success
{
  jobInfo: <Object>
}
Fires when the job succeeds.
start
{
  params: <Object>
}
Fires when the execute method is called.
Constructor Details

new AggregatePoints(params, srcNodeRef)

Creates a new AggregatePoints dijit using the given DOM node.
Parameters:
<Object> params Required Various options to configure this dijit. All the properties can be passed into the params object.
<Node | String> srcNodeRef Required Reference or id of a HTML element that this dijit is rendered into.
params properties:
<String> analysisGpServer Optional The URL to the GPServer used to execute an analysis job.

* Required when portalUrl is not specified.
<String> groupByField Optional A field name from pointLayer based on which the points will be grouped. This will be shown selected in the Choose field to group by (optional) menu by default. If not specified, users can still select a field.
<Boolean> keepBoundariesWithNoPoints Optional When true, the polygons that have no points within them will be returned in the output.
<Map> map Optional Reference to the map object.

* Required when showChooseExtent is true.
<String> outputLayerName Optional The name of the output layer to be shown in the Result layer name inputbox. If not specified, "Aggregation of ${point_layer_title} to ${polygon_layer_title}" will be shown by default.
<FeatureLayer> pointLayer Required The point feature layer that will be aggregated into the polygons in the polygon feature layer.

* Required.
<FeatureLayer> polygonLayer Required The polygon layer to be shown selected in in the Choose area menu. Must be one of the layers specified in polygonLayers.

* Required.
<FeatureLayer[]> polygonLayers Required An array of feature layer candidates to be selected as the input polygon layer. When a layer is selected by user, the AggregatePoints dijit will summarize points based on polygons on this polygon layer. These layer candidate will be shown in the Choose area menu.

* Required.
<String> portalUrl Optional The url to the ArcGIS.com site or in-house portal where the GP server is hosted.

* Required when analysisGpServer is not specified.
<Boolean> returnFeatureCollection Optional When true, returns the result of analysis as a client-side feature collection. This value determines whether or not the result will be saved and published on a user's arcgis.com account.
<Boolean> showChooseExtent Optional When true, the choose extent checkbox will be shown.
<Boolean> showCredits Optional When true, the show credit option is visible.
<Boolean> showHelp Optional When true, the help links will be shown.
<Boolean> showSelectFolder Optional When true, the select folder dropdown will be shown. This parameter should be used when you want to allow users to select a folder in their arcgis.com account where the output feature layer will be exported as a service.
<String[]> summaryFields Optional An array of attribute field names and statistic types that you would like to aggregate for all points within each polygon. The field names and statistic types your specify will be listed in the Add statistic (optional) menu. Note that even if you do not specify any, the default dropdown list will still allow users to select field names and statistic types.

Syntax: ["fieldName summaryType","fieldName summaryType", ...]
  • fieldName is the name of one of the numeric fields found in the input point layer.
  • summaryType is one of the following:
    • Sum - Adds the total value of all the points in each polygon.
    • Mean - Calculates the average of all the points in each polygon.
    • Min - Finds the smallest value of all the points in each polygon.
    • Max - Finds the largest value of all the points in each polygon.
    • Stddev - Finds the standard deviation of all the points in each polygon.
Note that the count of points within each polygon is always returned.
Sample:
require(["esri/dijit/analysis/AggregatePoints", ... ], function(AggregatePoints, ... ){
  var aggregatePoints = new AggregatePoints({
    pointLayer: pointlayer,
    polygonLayers: polygonLayers,
    portalUrl: "http://www.arcgis.com"
  }, "analysis-tool");
});
Property Details

<String> analysisGpServer

The URL to the analysis service, for example "http://analysis.arcgis.com/arcgis/rest/services/tasks/GPServer".

<String> folderId

Sets the selected folder of the select folder dropdown, based on the provided folderId, when showSelectFolder is true. When folderId and folderName are both provided, folderId has higher precedence. (Added at v3.13)

<String> folderName

Sets the selected folder of the select folder dropdown, based on the provided folderName, when showSelectFolder is true. (Added at v3.13)

<String> groupByField

A field name from pointLayer based on which the points will be grouped. This will be shown selected in the Choose field to group by (optional) menu by default. If not specified, users can still select a field.
Sample:
"groupByField": "Crime_type"

<Boolean> keepBoundariesWithNoPoints

When true, the polygons that have no points within them will be returned in the output.
Known values: true | false
Default value: true

<Map> map

Reference to the map object.

<Boolean> minorityMajority

When true, two fields will be added to your result layer to indicate which attribute values within each group are the minority (least dominant) or the majority (most dominant) within each boundary. If percentPoints is also true, two additional fields will be added to the result layer containing the percentages of the minority and majority attribute values within each group. (Added at v3.12)
Known values: true | false
Default value: false

<String> outputLayerName

The name of the output layer to be shown in the Result layer name inputbox. If not specified, "Aggregation of ${point_layer_title} to ${polygon_layer_title}" will be shown by default.

<Boolean> percentPoints

When true, a new field will be added to the result table containing the percentages of each attribute value within each group. If minorityMajority is also true, two additional fields will be added to the result layer containing the percentages of the minority and majority attribute values within each group. (Added at v3.12)
Known values: true | false
Default value: false

<FeatureLayer> pointLayer

The point feature layer that will be aggregated into the polygons in the polygon feature layer.

<FeatureLayer> polygonLayer

The polygon layer to be shown selected in in the Choose area menu. Must be one of the layers specified in polygonLayers.

<FeatureLayer[]> polygonLayers

An array of feature layer candidates to be selected as the input polygon layer. When a layer is selected by user, the AggregatePoints dijit will summarize points based on polygons on this polygon layer. These layer candidate will be shown in the Choose area menu.

<Object> portalSelf

The self response of the Portal. When set, optimizes performance to reuse self calls made by the widget. For more documentation on the properties of this object, see the Portal Self ArcGIS REST API documentation. (Added at v3.14)

<String> portalUrl

The URL to the ArcGIS.com site or in-house portal where the GP server is hosted, for example "http://www.arcgis.com". (Added at v3.7)

<Boolean> returnFeatureCollection

When true, returns the result of analysis as a client-side feature collection. This value determines whether or not the result will be saved and published on a user's arcgis.com account. (Added at v3.7)
Known values: true | false
Default value: false

<Boolean> showChooseExtent

When true, the choose extent checkbox will be shown.
Known values: true | false
Default value: true

<Boolean> showCloseIcon

Indicates whether to show the close icon on the widget's user interface. (Added at v3.14)
Known values: true | false
Default value: true

<Boolean> showCredits

When true, the show credit option is visible.
Known values: true | false
Default value: true

<Boolean> showHelp

When true, the help links will be shown.
Known values: true | false
Default value: true

<Boolean> showReadyToUseLayers

When true, adds an option to the UI that allows users to choose ready to use analysis layers from the Living Atlas Analysis Layers. (Added at v3.14)
Known values: true | false
Default value: true

<Boolean> showSelectAnalysisLayer

Indicates whether to display a drop down menu listing valid input analysis layers. (Added at v3.14)
Known values: true | false
Default value: true

<Boolean> showSelectFolder

When true, the select folder dropdown will be shown. This parameter should be used when you want to allow users to select a folder in their arcgis.com account where the output feature layer will be exported as a service.
Known values: true | false
Default value: false

<String[]> summaryFields

An array of attribute field names and statistic types that you would like to aggregate for all points within each polygon. The field names and statistic types your specify will be listed in the Add statistic (optional) menu. Note that even if you do not specify any, the default dropdown list will still allow users to select field names and statistic types.

Syntax: ["fieldName summaryType","fieldName summaryType", ...]
  • fieldName is the name of one of the numeric fields found in the input point layer.
  • summaryType is one of the following:
    • Sum - Adds the total value of all the points in each polygon.
    • Mean - Calculates the average of all the points in each polygon.
    • Min - Finds the smallest value of all the points in each polygon.
    • Max - Finds the largest value of all the points in each polygon.
    • Stddev - Finds the standard deviation of all the points in each polygon.
Note that the count of points within each polygon is always returned.
Sample:
"summaryFields": ["Annual_Sales Sum", "Annual_Sales Mean"]

<String> title

Overrides the default widget title with a custom title. Set this value in the initial constructor parameters.

For example, instead of using the default title (for example "Find Hot Spots"), you can use this property to change the default to a customized title for the tool (for example "Areas with High Crime"). (Added at v3.14)
Method Details

cancel(jobInfo)

Cancels an analysis job that is being processed.
Parameters:
<Object> jobInfo Required An object containing job information including job ID, status, message, etc returned by the job-status event.

checkJobStatus(jobId)

Starts checking the analysis job status for the given jobId. (Added at v3.12)
Parameters:
<String> jobId Required Job id of the analysis job to check.

execute(params)

Starts an analysis tool.
Parameters:
<String> params Required See the object specifications table below for the structure of the params object.
Object Specifications:
<params>
<Object> itemParams Optional Parameters for creating the output service item. Refer to the ArcGIS REST API - Add Item help topic for a list of available parameters. Only used when the analysis task creates a hosted service.
<Object> jobParams Required The input job parameters. Required parameters vary from class to class. Refer to the Analysis REST API Documentation for details (Under the Request Parameters section of each task). When creating a hosted service, a layer name is required.
Sample:
var params = {
  itemParams: {
    description: "Item description.",
    snippet: "A short summary about this item.",
    tags: "<tag1>, <tag2>, <tag3>, ... ",
    typeKeywords: "<typeKeyword1>, <typeKeyword2>, <typeKeyword3>, ... "
  },
  jobParams: {
    outputLayerName: "{\"serviceProperties\":{\"name\":\"Name of the output feature service\"},\"itemProperties\":{\"itemId\":\"<itemId>\"}}",
    ...
  }
}

analysisBase.execute(params);

getCreditsEstimate(toolName, jobParams)

Gets credits estimate for a specific analysis job. This method returns a deferred object. The callback function has an object containing the number of records to be processed and the estimated credit cost for this job.
Return type: Deferred
Parameters:
<String> toolName Required The name of the analysis tool from which a credits estimate will be returned.
<String> jobParams Required The input job parameters. This value should be the same as the jobParams property of an analysis tool dijit. Refer to the jobParams property of this class for detailed syntax.
Sample:
analysisBase.getCreditsEstimate("FindHotSpots",{
  AnalysisLayer: layer._json,
  context: '{"outSR":{"wkid":102100}}',
  isProcessInfo: true,
  returnFeatureCollection: true
}).then(function(result){
  console.log(result);
});

//the "result" argument above:
//{
//  "cost": 1.472,
//  "totalRecords": 1472,
//}

startup()

Finalizes the creation of the widget. (Added at v3.12)
Event Details
[ On Style Events | Connect Style Event ]

close

Fires when close icon is clicked or when run analysis button is clicked. (Added at v3.7)

job-cancel

Fires when the job in cancelled. (Added at v3.7)
Event Object Properties:
<Object> response An GP job object returned by the GP server. Refer to the GP Job and the Checking job status topics in the ArcGIS REST API Documentation for more information and syntax.
{
  "inputs": {},
  "jobId": <job id>,
  "jobStatus": <job status>,
  "messages": <an array of message text>,
  "results": {}
}

job-fail

Fires when the job fails. (Added at v3.7)
Event Object Properties:
<Object> error The error message returned by a failed job.
{
  "analysisReport": <analysis report message>,
  "dataType": <analysis report message>,
  "paramName": < parameter  name >,
  "value": <output item info | feature collection>
}

job-result

Fires after the job fetches result data. The returned argument contains the output value (either a feature collection or a url to the hosted service), which you may add to the map as a feature layer. (Added at v3.7)
Event Object Properties:
<Object> result An object containing the resulted message and value. Based on the GP result object returned by the GP server with the analysisReport property added.

If output is a feature collection, value is a feature collection object; if output is a hosted arcgis.com feature service, value is an object with item information including ID and URL. Refer to the ArcGIS REST API documentation - Feature Output for more information.
{
  "analysisReport": <analysis report message>,
  "dataType": <analysis report message>,
  "paramName": < parameter  name >,
  "value": <output item info | feature collection>
}
Sample:
analysisTool.on("job-result", function(result){
  var featureLayer = new FeatureLayer(result.value['url'] || result.value);
  map.addLayer(featureLayer);
})

job-status

Fires when the job execution status is received. (Added at v3.7)
Event Object Properties:
<Object> jobInfo An object containing job information including job ID, status, message, etc. Based on the GP job object returned by the GP server with the jobParam property attached. Refer to the GP Job and the Checking job status topics in the ArcGIS REST API Documentation for more information and syntax.
{
  "inputs": {},
  "jobParams": <job parameters>,
  "jobId": <job id>,
  "jobStatus": <job status>,
  "messages": <an array of message text>,
  "results": {}
}

job-submit

Fires when the job is submitted to the server for asynchronous processing. (Added at v3.7)
Event Object Properties:
<Object> params The input job parameters.

job-success

Fires when the job succeeds. (Added at v3.7)
Event Object Properties:
<Object> jobInfo An object containing job information including job ID, status, message, etc. Based on the GP job object returned by the GP server with the jobParam property attached. Refer to the GP Job and the Checking job status topics in the ArcGIS REST API Documentation for more information and syntax.

This returned object can be passed into the cancel(jobInfo) method to terminate a job.
{
  "inputs": {},
  "jobParams": <job parameters>,
  "jobId": <job id>,
  "jobStatus": <job status>,
  "messages": <an array of message text>,
  "results": {}
}

start

Fires when the execute method is called. (Added at v3.7)
Event Object Properties:
<Object> params The input job parameters.
Show Modal