ArcGIS Runtime SDK for iOS
100.15
|
Parameters to perform a statistic query using AGSFeatureTable
.
Instances of this class represent parameters that can be used to perform a statistic query using queryStatisticsWithParameters:completion: (AGSFeatureTable)
.
All parameters related to geometry and spatial queries will be ignored when querying non spatial data.
Instance Methods | |
(instancetype) | - initWithStatisticDefinitions: |
Class Methods | |
(instancetype) | + statisticsQueryParametersWithStatisticDefinitions: |
Properties | |
AGSGeometry * | geometry |
NSArray< NSString * > * | groupByFieldNames |
NSArray< AGSOrderBy * > * | orderByFields |
AGSSpatialRelationship | spatialRelationship |
NSArray< AGSStatisticDefinition * > * | statisticDefinitions |
AGSTimeExtent * | timeExtent |
NSString * | whereClause |
- (instancetype) initWithStatisticDefinitions: | (NSArray< AGSStatisticDefinition * > *) | statisticDefinitions |
Intialize the query parameter with the provided statistic definitions
statisticDefinitions | describing which statistics are required in the query result |
+ (instancetype) statisticsQueryParametersWithStatisticDefinitions: | (NSArray< AGSStatisticDefinition * > *) | statisticDefinitions |
Intialize the query parameter with the provided statistic definitions
statisticDefinitions | describing which statistics are required in the query result |
|
readwritenonatomicstrong |
The geometry to use while performing a spatial query. Valid geometry types are AGSEnvelope
, AGSPoint
, AGSMultipoint
, AGSPolygon
, and AGSPolyline
. Results of the query will include only those features which conform to the specified spatialRelationship
with this geometry.
|
readwritenonatomiccopy |
The fields by which statistical query results should be grouped.
|
readwritenonatomiccopy |
Fields by which the results need to be ordered. Note, the service being queried must support advanced queries.
|
readwritenonatomicassign |
The spatial constraint that needs to be applied on the query geometry
. Only data satisfying this relationship will be returned as results.
|
readwritenonatomiccopy |
The definition of which statistics (input field, output name, statistic type) to include in the results of statistical query.
|
readwritenonatomicstrong |
Time extent for the query. Only features that fall within this time period will be returned.
|
readwritenonatomiccopy |
A SQL where clause to filter results for the query. If the where clause includes dates, they must be correctly formatted based on the geodatabase datasource used in the service. Refer to this document for date formats expected by different datasources.