GET https://logistics.arcgis.com/arcgis/rest/services/World/LocationAllocation/GPServer/SolveLocationAllocation/submitJob
The /
job request finds a set of facilities that will best serve demand from surrounding areas. As the name suggests, location-allocation is a two-fold problem that simultaneously locates facilities and allocates demand points to the facilities.
Location-allocation can help you answer questions like the following:
- Given a set of existing fire stations, which site for a new fire station would provide the best response times for the community?
- If a retail company has to downsize, which stores should it close to maintain the most overall demand?
- Where should a factory be built to minimize the distance to distribution centers?
In these examples, facilities would represent the fire stations, retail stores, and factories; demand points would represent buildings, customers, and distribution centers.
The objective may be to minimize the overall distance between demand points and facilities, maximize the number of demand points covered within a certain distance of facilities, maximize an apportioned amount of demand that decays with increasing distance from a facility, or maximize the amount of demand captured in an environment of friendly and competing facilities.
Parameters
Name | Required | Type | Default | Description |
---|---|---|---|---|
string | The request response format, either | |||
string | An access token with the required privileges. | |||
feature | One or more locations that serve as facilities. | |||
feature | One or more demand points. | |||
object | The mode of transportation for the analysis provided as a JSON object. | |||
object | Determines how input data are located. | |||
string |
| Units that should be used to report the total travel time or travel distance for the output routes. | ||
string | Region in which to perform the analysis. | |||
string |
| Objective of the location-allocation analysis. | ||
integer |
| The number of facilities the task should choose. | ||
number |
| The maximum travel time or distance allowed between a demand point and the facility to which it is allocated. | ||
number |
| The default capacity assigned to all facilities in the analysis. Only applicable to the Maximize Capacitated Coverage problem type; ignored for all other problem types. | ||
number |
| The percentage of the total demand weight that you want the chosen and required facilities to capture. Only applicable to the Target Market Share problem type; ignored for all other problem types. | ||
string |
| The equation for transforming the network cost between facilities and demand points. | ||
number |
| The impedance parameter value (λ) to the equation specified in the measurement_transformation_model parameter. Ignored when the impedance transformation is linear. | ||
string |
| Measure travel times or distances from facilities to demand points or from demand points to facilities. | ||
datetime | The time at which travel begins, or departs, from the starting locations. | |||
string |
| The time zone or zones of the | ||
string |
| Restricts or allows a route to make U-turns at junctions. | ||
feature | One or more points that act as temporary restrictions, additional time, or distance. | |||
feature | One ore more lines that prohibit travel anywhere the lines intersect the streets. | |||
feature | Polygons that either prohibit travel or proportionately scale the time or distance required to travel on the streets. | |||
boolean |
| Hierarchy used when finding the shortest paths. | ||
[string] | The restrictions that should be honored by the service. | |||
table | Additional values required by an attribute or restriction. | |||
string |
| Type of line features that are output by the service. | ||
string | Time-based impedance. | |||
string |
| Distance-based impedance. | ||
string | Type of impedance. | |||
boolean |
| Save the analysis settings as a network analysis layer file. | ||
string |
| Format in which the output features will be returned. | ||
object | Additional settings that affect task operation | |||
string | For internal use only. | |||
boolean |
| Ignores invalid input locations. |
Required parameters
token
An access token with the required privileges.
- ArcGIS Location Platform: premium:user:networkanalysis:routing or premium:user:networkanalysis:optimizedrouting
- ArcGIS Online: premium:user:networkanalysis
token=<ACCESS_TOKEN>
To use HTTP headers instead of the token
parameter, set the following:
GET <SERVICE_REQUEST> HTTP/1.1
Host: <SERVICE_DOMAIN>
X-Esri-Authorization: Bearer <ACCESS_TOKEN>
Learn more about access tokens and privileges in the Security and authentication developer guide.
facilities
Specify one or more locations that serve as facilities. This service identifies the best facility or facilities to serve the demand points.
When specifying the facilities, you can set attributes for each as follows:
Show attributes for facilities
Attributes for facilities
-
Namestring (length: 500)nullable
The name of the facility. The name is included in the name of output allocation lines if the facility is part of the solution.
-
FacilityTypeint enumdefault:0
Allowed values:
0
,1
,2
Specify whether the facility is a candidate, required, or a competitor facility. The field value is specified as one of the following integers:
0
:Candidate—A facility that may be part of the solution.1
:Required—A facility that must be part of the solution.2
:Competitor—A rival facility that potentially removes demand from your facilities. Competitor facilities are specific to the maximize market share and target market share problem types; they are ignored in other problem types.
-
Weightnumber (non-negative)
The relative weighting of the facility, which is used to rate the attractiveness, desirability, or bias of one facility compared to another.
For example, a value of 2.0 could capture the preference of customers who prefer, at a ratio of 2 to 1, shopping in one facility over another facility. Factors that potentially affect facility weight include square footage, neighborhood, and age of the building. Weight values other than one are only honored by the maximize market share and target market share problem types; they are ignored in other problem types.
-
Cutoffnumber (non-negative)default:0
The impedance value at which to stop searching for demand points from a given facility. The demand point can't be allocated to a facility that is beyond the value indicated here.
This attribute allows you to specify a different cutoff value for each demand point. For example, You might find that people in rural areas are willing to travel up to 10 miles to reach a facility, while urbanites are only willing to travel up to 2 miles. You can model this behavior by setting the
Cutoff
value for all demand points that are in rural areas to 10 and setting theCutoff
value of the demand points in urban areas to 2. -
Capacitynumber (non-negative)default:0
The
Capacity
field is specific to the Maximize Capacitated Coverage problem type; the other problem types ignore this field.Capacity specifies how much weighted demand the facility is capable of supplying. Excess demand won't be allocated to a facility even if that demand is within the facility's default measurement cutoff.
Any value assigned to the
Capacity
field overrides theDefault Capacity
parameter (Default
in Python) for the given facility._Capacity -
CurbApproachint enumdefault:0
Allowed values:
0
,1
,2
,3
Specifies the direction a vehicle may arrive at and depart from the facility. The field value is specified as one of the following integers:
0
: Either side of vehicle. The vehicle can approach and depart the facility in either direction. U-turns are allowed. You should choose this setting if your vehicle can make a U-turn at the order or if it can pull into a driveway or parking lot and turn around.1
: Right side of vehicle. When the vehicle approaches and departs the facility, the curb must be on the right side of the vehicle. A U-turn is prohibited.2
: Left side of vehicle. When the vehicle approaches and departs the facility, the curb must be on the left side of the vehicle. A U-turn is prohibited.3
: No U-turn. When the vehicle approaches the facility, the curb can be on either side of the vehicle; however, the vehicle must depart without turning around. Learn more about U-turn policies
Show illustration
Setting Coded value Description Either side of vehicle
0
The vehicle can approach and depart the facility in either direction, so a U-turn is allowed at the facility. This setting can be chosen if it is possible and desirable for a vehicle to turn around at the facility. This decision may depend on the width of the road and the amount of traffic or whether the location has a parking lot where vehicles can pull in and turn around.
All arrival and departure combinations are allowed with the Either side of vehicle curb approach.
Right side of vehicle
1
When the vehicle approaches and departs the facility, the facility must be on the right side of the vehicle. A U-turn is prohibited. This is typically used for vehicles such as buses that must arrive with the bus stop on the right side.
The allowed arrival and departure combination for the Right side of vehicle curb approach is shown.
Left side of vehicle
2
When the vehicle approaches and departs the facility, the facility must be on the left side of the vehicle. A U-turn is prohibited. This is typically used for vehicles such as buses that must arrive with the bus stop on the left side.
The allowed arrival and departure combination for the Left side of vehicle curb approach is shown.
No U-Turn
3
When the vehicle approaches the facility, the facility can be on either side of the vehicle; however, when it departs, the vehicle must continue in the same direction it arrived. A U-turn is prohibited.
The allowed arrival and departure combinations for the No U-Turn curb approach are shown.
The
Curb
attribute is designed to work with both types of national driving standards: right-hand traffic (United States) and left-hand traffic (United Kingdom). First, consider an facility on the left side of a vehicle. It is always on the left side regardless of whether the vehicle travels on the left or right half of the road. What may change with national driving standards is your decision to approach an facility from one of two directions, that is, so it ends up on the right or left side of the vehicle. For example, if you want to arrive at an facility and not have a lane of traffic between the vehicle and the facility, choose 1 (Right side of vehicle) in the United States and 2 (Left side of vehicle) in the United Kingdom.Approach With right-hand traffic, the curb approach that leaves the vehicle closest to the facility is Right side of vehicle.
With left-hand traffic, the curb approach that leaves the vehicle closest to the facility is Left side of vehicle.
-
Bearingnumber (non-negative)nullable
The direction in which a point is moving. The units are degrees and are measured clockwise from true north.
This attribute is used in conjunction with the
Bearing
attribute. Bearing data is usually sent automatically from a mobile device equipped with a GPS receiver. Try to include bearing data if you are loading an input location that is moving, such as a pedestrian or a vehicle. Using this attribute tends to prevent adding locations to the wrong edges, which can occur when a vehicle is near an intersection or an overpass, for example. Bearing also helps the solver determine the side of the street that the point is on.Tol -
BearingTolnumber (range: 0 - 180)default:30nullable
The bearing tolerance value creates a range of acceptable bearing values when locating moving points on an edge using the
Bearing
attribute.If the
Bearing
attribute value is within the range of acceptable values that are generated from the bearing tolerance on an edge, the point can be added as a network location there; otherwise, the closest point on the next-nearest edge is evaluated. The units are in degrees. A value of 30 means that when Network Analyst attempts to add a network location on an edge, a range of acceptable bearing values is generated 15 degrees to either side of the edge (left and right) and in both digitized directions of the edge. -
NavLatencynumber (non-negative)nullable
Indicates how much cost is expected to elapse from the moment GPS information is sent from a moving vehicle to a server and the moment the processed route is received by the vehicle's navigation device.
This attribute is only used in the solve process if the
Bearing
andBearing
fields also have values; however, providing aTol Nav
attribute value is optional, even when values are present in theLatency Bearing
andBearing
.Tol
Example
The example shows how to specify some attributes for the facilities
.
{
"features": [
{
"geometry": {
"y": 51.5254,
"x": -0.1891
},
"attributes": {
"Name": "Facility 1",
"ID": "F100045",
"Capacity": 100,
"CurbApproach": 0
}
},
{
"geometry": {
"y": 51.5353,
"x": -0.1744
},
"attributes": {
demand_points
Specify one or more demand points. The service identifies the best facilities based in large part on how the facilities serve the demand points specified.
When specifying the demand points, you can set attributes for each as follows:
Show attributes for demand points
Attributes for demand points
-
Namestring (length: 500)nullable
The name of the demand point. The name is included in the name of an output allocation line or lines if the demand point is part of the solution.
-
GroupNamestring (length: 500)
The name of the group to which the demand point belongs. This field is ignored for the Maximize Capacitated Coverage, Target Market Share, and Maximize Market Share problem types.
If demand points share a group name, the solver allocates all members of the group to the same facility. (If constraints, such as a cutoff distance, prevent any of the demand points in the group from reaching the same facility, none of the demand points are allocated.)
Minimize distance without grouped demand points.
Minimize distance with grouped demand points. In this example, the yellow demand points have the same GroupName value, so they are allocated to the same facility.
-
Weightnumber (non-negative)
The relative weighting of the demand point. A value of 2.0 means the demand point is twice as important as one with a weight of 1.0. If demand points represent households, for example, weight could indicate the number of people in each household.
-
Cutoffnumber (non-negative)default:0
The impedance value at which to stop searching for demand points from a given facility. The demand point can't be allocated to a facility that is beyond the value indicated here.
This attribute allows you to specify a cutoff value for each demand point. For example, you may find that people in rural areas are willing to travel up to 10 miles to reach a facility, while those in urban areas are only willing to travel up to 2 miles. You can model this behavior by setting the
Cutoff
value for all demand points that are in rural areas to 10 and setting theCutoff
value of the demand points in urban areas to 2.The units for this attribute value are specified by the
measurement
parameter._units A value for this attribute overrides the default set for the analysis using the
default
parameter. The default value is_measurement _cutoff Null
, which results in the default value set by thedefault
parameter being used for all the demand points._measurement _cutoff -
ImpedanceTransformationinteger
Override the default value set for the analysis by the
measurement
parameter._transformation _model -
ImpedanceParameternumber (non-negative)
Override the default value set for the analysis by the
measurement
parameter._transformation _model -
CurbApproachint enumdefault:0
Allowed values:
0
,1
,2
,3
Specifies the direction a vehicle may arrive at or depart from the demand point. The field value is specified as one of the following integers:
0
: Either side of vehicle. The vehicle can approach and depart the demand point in either direction. U-turns are allowed. You should choose this setting if your vehicle can make a U-turn at the order or if it can pull into a driveway or parking lot and turn around.1
: Right side of vehicle. When the vehicle approaches and departs the demand point, the curb must be on the right side of the vehicle. A U-turn is prohibited.2
: Left side of vehicle. When the vehicle approaches and departs the demand point, the curb must be on the left side of the vehicle. A U-turn is prohibited.3
: No U-turn. When the vehicle approaches the demand point, the curb can be on either side of the vehicle; however, the vehicle must depart without turning around. Learn more about U-turn policies
Show illustration
Setting Coded value Description Either side of vehicle
0
The vehicle can approach and depart the demand point in either direction.
All arrival and departure combinations are allowed with the Either side of vehicle curb approach.
Right side of vehicle
1
When the vehicle approaches or departs the demand point, the demand point must be on the right side of the vehicle. This is typically used for vehicles such as buses that must arrive with the bus stop on the right side.
The allowed arrival and departure combination for the Right side of vehicle curb approach is shown.
Left side of vehicle
2
When the vehicle approaches or departs the demand point, the demand point must be on the left side of the vehicle. This is typically used for vehicles such as buses that must arrive with the bus stop on the left side.
The allowed arrival and departure combination for the Left side of vehicle curb approach is shown.
No U-Turn
3
When the vehicle approaches the demand point, the demand point can be on either side of the vehicle; however, when it departs, the vehicle must continue in the same direction it arrived in. A U-turn is prohibited.
The allowed arrival and departure combinations for the No U-Turn curb approach are shown.
The
Curb
property is designed to work with both types of national driving standards: right-hand traffic (United States) and left-hand traffic (United Kingdom). First, consider a demand point on the left side of a vehicle. It is always on the left side regardless of whether the vehicle travels on the left or right half of the road. What may change with national driving standards is your decision to approach a demand point from one of two directions, that is, so it ends up on the right or left side of the vehicle. For example, if you want to arrive at a demand point and not have a lane of traffic between the vehicle and the demand point, you would choose 1 (Right side of vehicle) in the United States and 2 (Left side of vehicle) in the United Kingdom.Approach With right-hand traffic, the curb approach that leaves the vehicle closest to the demand point is Right side of vehicle.
With left-hand traffic, the curb approach that leaves the vehicle closest to the demand point is Left side of vehicle.
-
Bearingnumber (non-negative)nullable
The direction in which a point is moving. The units are degrees and are measured clockwise from true north.
This attribute is used in conjunction with the
Bearing
attribute. Bearing data is usually sent automatically from a mobile device equipped with a GPS receiver. Try to include bearing data if you are loading an input location that is moving, such as a pedestrian or a vehicle. Using this attribute tends to prevent adding locations to the wrong edges, which can occur when a vehicle is near an intersection or an overpass, for example. Bearing also helps the solver determine the side of the street that the point is on.Tol -
BearingTolnumber (range: 0 - 180)default:30nullable
The bearing tolerance value creates a range of acceptable bearing values when locating moving points on an edge using the
Bearing
attribute.If the
Bearing
attribute value is within the range of acceptable values that are generated from the bearing tolerance on an edge, the point can be added as a network location there; otherwise, the closest point on the next-nearest edge is evaluated. The units are in degrees. A value of 30 means that when Network Analyst attempts to add a network location on an edge, a range of acceptable bearing values is generated 15 degrees to either side of the edge (left and right) and in both digitized directions of the edge. -
NavLatencynumber (non-negative)nullable
Indicates how much cost is expected to elapse from the moment GPS information is sent from a moving vehicle to a server and the moment the processed route is received by the vehicle's navigation device.
This attribute is only used in the solve process if the
Bearing
andBearing
fields also have values; however, providing aTol Nav
attribute value is optional, even when values are present in theLatency Bearing
andBearing
.Tol
Example
The example shows how to specify some attributes for the demand
.
{
"features": [
{
"geometry": {
"y": 51.5254,
"x": -0.1891
},
"attributes": {
"Name": "Customer 1",
"ID": "C00001",
"Weight": 10,
"CurbApproach": 0
}
},
{
"geometry": {
"y": 51.5353,
"x": -0.1744
},
"attributes": {
Optional parameters
travel_modes
Choose the mode of transportation for the analysis.
Travel modes are managed and configured in ArcGIS Online by the administrator of your organization to better reflect the organization's workflows.
In the example below, the following is a string representing the Walking Time travel mode as returned by the Get
tool:
"{\"attributeParameterValues\": [{\"attributeName\": \"Avoid Private Roads\", \"parameterName\": \"Restriction Usage\", \"value\": \"AVOID_MEDIUM\"}, {\"attributeName\": \"Walking\", \"parameterName\": \"Restriction Usage\", \"value\": \"PROHIBITED\"}, {\"attributeName\": \"Preferred for Pedestrians\", \"parameterName\": \"Restriction Usage\", \"value\": \"PREFER_LOW\"}, {\"attributeName\": \"WalkTime\", \"parameterName\": \"Walking Speed (km/h)\", \"value\": 5}, {\"attributeName\": \"Avoid Roads Unsuitable for Pedestrians\", \"parameterName\": \"Restriction Usage\", \"value\": \"AVOID_HIGH\"}], \"description\": \"Follows paths and roads that allow pedestrian traffic and finds solutions that optimize travel time. The walking speed is set to 5 kilometers per hour.\", \"distanceAttributeName\": \"Kilometers\", \"id\": \"caFAgoThrvUpkFBW\", \"impedanceAttributeName\": \"WalkTime\", \"name\": \"Walking Time\", \"restrictionAttributeNames\": [\"Avoid Private Roads\", \"Avoid Roads Unsuitable for Pedestrians\", \"Preferred for Pedestrians\", \"Walking\"], \"simplificationTolerance\": 2, \"simplificationToleranceUnits\": \"esriMeters\", \"timeAttributeName\": \"WalkTime\", \"type\": \"WALK\", \"useHierarchy\": false, \"uturnAtJunctions\": \"esriNFSBAllowBacktrack\"}"
The value above should be converted to a valid JSON object and passed as the value for the travel
parameter as shown below.
{
"attributeParameterValues": [
{
"attributeName": "Avoid Private Roads",
"parameterName": "Restriction Usage",
"value": "AVOID_MEDIUM"
},
{
"attributeName": "Walking",
"parameterName": "Restriction Usage",
"value": "PROHIBITED"
},
{
"attributeName": "Preferred for Pedestrians",
"parameterName": "Restriction Usage",
"value": "PREFER_LOW"
},
{
"attributeName": "WalkTime",
"parameterName": "Walking Speed (km/h)",
locate_Settings
Specify settings that affect how inputs are located, such as the maximum search distance to use when locating the inputs on the network or the network sources being used for locating.
The default value is as follows:
{
"default": {
"tolerance": 20000,
"toleranceUnits": "esriMeters",
"allowAutoRelocate": true,
"sources": [
{
"name": "main.Routing_Streets"
}
]
}
}
You can specify locate settings and can override locate settings for individual features such as, facilities, demand_points, point_barriers, line_barriers, and polygon_barriers through locator JSON object.
Show examples
Example for locate_settings
Example 1: Specify locate settings using a JSON structure
This example shows how to specify locate settings so inputs are only located within 500 meters of the specified location. A small search tolerance like this can be helpful if you are solving using a walking travel mode and don't want inputs to be located farther than 500 meters from the original point location.
{
"default": {
"tolerance": 500,
"toleranceUnits": "esriMeters",
"allowAutoRelocate": true,
"sources": [
{
"name": "Routing_Streets"
}
]
}
}
measurement_units
Allowed values: Meters
, Kilometers
, Feet
, Yards
, Nautical
, Seconds
, Minutes
, Hours
, Days
Specify the units that will be used to measure the travel times or travel distances between demand points and facilities.
The service finds the best facilities based on those that can reach, or be reached by, the most amount of weighted demand with the least amount travel. The output allocation lines report travel distance or travel time in different units, including the units you specify for this parameter.
analysis_region
Allowed values: Europe
, Japan
, Korea
, Middle
, North
, South
, South
, Thailand
Specify the region in which to perform the analysis. If a value is not specified for this parameter, the service will automatically calculate the region name based on the location of the input points. Setting the name of the region is recommended to speed up the analysis.
The data coverage page lists the countries that are grouped into each of these regions.
problem_type
Allowed values: Maximize Attendance
, Maximize Capacitated Coverage
, Maximize Coverage
, Maximize Market Share
, Minimize Facilities
, Minimize Impedance
, Target Market Share
Specify the objective of the location-allocation analysis, which can be one of the following options:
-
Maximize Attendance
—Facilities are chosen such that as much demand weight as possible is allocated to facilities while assuming the demand weight decreases in relation to the distance between the facility and the demand point.Maximize Attendance chooses facilities such that as much demand weight as possible is allocated to facilities while assuming the demand weight decreases with distance. The demand points, represented by pie charts in this graphic, show how much of their total demand is captured by the facility.
Expand to learn more
Specialty stores that have little or no competition benefit from this problem type, but it may also be beneficial to general retailers and restaurants that don't have the data on competitors necessary to perform market share problem types. Some businesses that might benefit from this problem type include coffee shops, fitness centers, dental and medical offices, and electronics stores. Public transit bus stops are often chosen with the help of Maximize Attendance. Maximize Attendance assumes that the farther people have to travel to reach your facility, the less likely they are to use it. This is reflected in how the amount of demand allocated to facilities diminishes with distance.
The following list describes how the Maximize Attendance problem handles demand:
- A demand point that cannot reach any facilities due to a cutoff distance or time is not allocated.
- When a demand point can reach a facility, its demand weight is only partially allocated to the facility. The amount allocated decreases as a function of the maximum cutoff distance (or time) and the travel distance (or time) between the facility and the demand point.
- The weight of a demand point that can reach more than one facility is proportionately allocated to the nearest facility only.
-
Maximize Coverage
—Facilities are located such that as much demand as possible is allocated to solution facilities within the impedance cutoff.Maximize Coverage chooses facilities such that as much demand as possible is covered by the impedance cutoff of facilities. In this graphic, the task was directed to choose three facilities.
Expand to learn more
Maximize Coverage is frequently used to locate fire stations, police stations, and Emergency Response Services (ERS) centers, because emergency services are often required to arrive at all demand points within a specified response time. Note that it is important for all organizations, and critical for emergency services, to have accurate and precise data so that analysis results correctly model real-world results.
Pizza delivery businesses, as opposed to eat-in pizzerias, try to locate stores where they can cover the most people within a certain drive time. People who order pizzas for delivery don't typically worry about how far away the pizzeria is; they are mainly concerned with the pizza arriving within an advertised time window. Therefore, a pizza delivery business would subtract pizza preparation time from its advertised delivery time and solve a maximize coverage problem to choose the candidate facility that would capture the most potential customers in the coverage area. (Potential customers of eat-in pizzerias are more affected by distance, since they need to travel to the restaurant; thus, the attendance maximizing or market share problem types would better suit eat-in restaurants.)
The following list describes how the Maximize Coverage problem handles demand:
- A demand point that cannot reach any facilities due to cutoff distance or time is not allocated.
- A demand point that can only reach one facility has all its demand weight allocated to that facility.
- A demand point that can reach two or more facilities has all its demand weight allocated to the nearest facility only.
-
Maximize Capacitated Coverage
—Facilities are located such that all or the greatest amount of demand can be served without exceeding the capacity of any facility.Maximize Capacitated Coverage chooses facilities such that all or the greatest amount of demand can be served without exceeding the capacity of any facility. In this graphic, each facility has a capacity of one, and the task was directed to choose three facilities. Although the demand point on the bottom of the map is within the impedance cutoff of a facility, it's not allocated, because doing so would surpass a facility's capacity.
Expand to learn more
Maximize Capacitated Coverage behaves like either the Minimize Impedance or Maximize Coverage problem type but with the added constraint of capacity. You can specify a capacity for an individual facility by assigning a numeric value to its corresponding
Capacity
attribute on the input facilities. If theCapacity
attribute value is null, the facility is assigned a capacity from thedefault
property._capacity Use cases for Maximize Capacitated Coverage include creating territories that encompass a given number of people or businesses, locating hospitals or other medical facilities with a limited number of beds or patients who can be treated, or locating warehouses whose inventory isn't assumed to be unlimited.
The following list describes how the Maximize Capacitated Coverage problem handles demand:
- Unlike Maximize Coverage, Maximize Capacitated Coverage doesn't require a value for the Default Measurement Cutoff; however, when a cutoff is specified, any demand point outside the cutoff time or distance of all facilities is not allocated.
- An allocated demand point has all or none of its demand weight assigned to a facility; that is, demand isn't apportioned with this problem type.
- If the total demand that can reach a facility is greater than the capacity of the facility, only the demand points that maximize total captured demand and minimize total weighted travel are allocated.
-
Maximize Market Share
—A specific number of facilities are chosen such that the allocated demand is maximized in the presence of competitors. The goal is to capture as much of the total market share as possible with a given number of facilities, which you specify. The total market share is the sum of all demand weight for valid demand points.Maximize Market Share chooses facilities such that the largest amount of allocated demand is captured in the presence of competitors. You specify the number of facilities you want it to choose.
Expand to learn more
The market share problem types require the most data because, along with knowing your own facilities' weight, you also need to know that of your competitors' facilities. The same types of facilities that use the Maximize Attendance problem type can also use market share problem types, given that they have comprehensive information that includes competitor data. Large discount stores typically use Maximize Market Share to locate a finite set of new stores. The market share problem types use a Huff model, which is also known as a gravity model or spatial interaction.
The following list describes how the Maximize Market Share problem handles demand:
- A demand point that cannot reach any facilities due to a cutoff distance or time is not allocated.
- A demand point that can only reach one facility has all its demand weight allocated to that facility.
- A demand point that can reach two or more facilities has all its demand weight allocated to them; furthermore, the weight is split among the facilities proportionally to the facilities' attractiveness (facility weight) and inversely proportional to the distance between the facility and demand point. Given equal facility weights, this means more demand weight is assigned to near facilities than far facilities.
- The total market share, which can be used to calculate the captured market share, is the sum of the weight of all valid demand points.
-
Minimize Facilities
—Facilities are chosen such that as much weighted demand as possible is allocated to solution facilities within the travel time or distance cutoff; additionally, the number of facilities required to cover demand is minimized.Minimize Facilities chooses facilities such that as many demand points as possible are within the impedance cutoff of facilities. Additionally, the number of facilities required to cover all demand points is minimized. In this graphic, the task was able to cover all demand points with only two facilities.
Expand to learn more
Minimize Facilities is the same as Maximize Coverage but with the exception of the number of facilities to locate, which in this case is determined by the solver. When the cost of building facilities is not a limiting factor, the same kinds of organizations that use Maximize Coverage (emergency response, for instance) use Minimize Facilities so that all possible demand points will be covered.
The following list describes how the Minimize Facilities problem handles demand:
- A demand point that cannot reach any facilities due to a cutoff distance or time is not allocated.
- A demand point that can only reach one facility has all its demand weight allocated to that facility.
- A demand point that can reach two or more facilities has all its demand weight allocated to the nearest facility only.
-
Minimize Impedance
—This is also known as the P-Median problem type. Facilities are located such that the sum of all weighted travel time or distance between demand points and solution facilities is minimized. (Weighted travel is the amount of demand allocated to a facility multiplied by the travel distance or time to the facility.)Minimize Impedance chooses facilities such that the sum of weighted impedances (demand allocated to a facility multiplied by the impedance to the facility) is minimized.
Expand to learn more
This problem type is traditionally used to locate warehouses, because it can reduce the overall transportation costs of delivering goods to outlets. Since Minimize Impedance reduces the overall distance the public needs to travel to reach the chosen facilities, the minimize impedance problem without an impedance cutoff is ordinarily regarded as more equitable than other problem types for locating some public-sector facilities such as libraries, regional airports, museums, department of motor vehicles offices, and health clinics.
The following list describes how the minimize impedance problem type handles demand:
- A demand point that cannot reach any facilities, due to setting a cutoff distance or time, is not allocated.
- A demand point that can only reach one facility has all its demand weight allocated to that facility.
- A demand point that can reach two or more facilities has all its demand weight allocated to the nearest facility only.
-
Target Market Share
—Target Market Share chooses the minimum number of facilities necessary to capture a specific percentage of the total market share in the presence of competitors. The total market share is the sum of all demand weight for valid demand points. You set the percent of the market share you want to reach and let the solver choose the fewest number of facilities necessary to meet that threshold.Target Market Share works in the presence of competitors and tries to choose the fewest facilities necessary to capture the market share that you specify.
Expand to learn more
The market share problem types require the most data because, along with knowing your own facilities' weight, you also need to know that of your competitors' facilities. The same types of facilities that use the Maximize Attendance problem type can also use market share problem types, given that they have comprehensive information that includes competitor data.
Large discount stores typically use the Target Market Share problem type when they want to know how much expansion would be required to reach a certain level of the market share or see what strategy would be needed just to maintain their current market share, given the introduction of new competing facilities. The results often represent what stores would like to do if budgets weren't a concern. In other cases in which budget is a concern, stores revert to the Maximize Market Share problem and simply capture as much of the market share as possible with a limited number of facilities.
The following list describes how the target market share problem handles demand:
- The total market share, which is used in calculating the captured market share, is the sum of the weight of all valid demand points.
- A demand point that cannot reach any facilities due to a cutoff distance or time is not allocated.
- A demand point that can only reach one facility has all its demand weight allocated to that facility.
- A demand point that can reach two or more facilities has all its demand weight allocated to them; furthermore, the weight is split among the facilities proportionally to the facilities' attractiveness (facility weight) and inversely proportional to the distance between the facility and demand point. Given equal facility weights, this means more demand weight is assigned to near facilities than far facilities.
number_of_facilities_to_find
Specify the number of facilities the task should choose.
The facilities with a Facility
attribute value of 1 (Required) are always chosen first. Any excess facilities to choose are picked from candidate facilities, which have a Facility
attribute value of 2. If the number of facilities to find is less than the number of required facilities, an error occurs.
The number
parameter is ignored for the Minimize Facilities and Target Market Share problem types since the task determines the minimum number of facilities needed to meet the objectives.
default_measurement_cutoff
Specify the maximum travel time or distance allowed between a demand point and the facility to which it is allocated. If a demand point is outside the cutoff of a facility, it cannot be allocated to that facility.
The default value of None
means travel isn't limited. The units for this parameter are the same as those specified by the measurement
parameter. The travel time or distance is measured by the shortest path along roads. This property might be used to model the maximum distance that people are willing to travel to visit stores or the maximum time that is permitted for a fire department to reach anyone in the community.
Note that demand points have Time
and Distance
attributes, which, if set accordingly, override the default
parameter. You may find that people in rural areas are willing to travel up to 10 miles to reach a facility while urbanites are only willing to travel up to two miles. Assuming measurement
is set to miles
, you can model this behavior by setting the default
to 10
and the Distance
attribute value of the demand points in urban areas to 2
.
default_capacity
This parameter is specific to the Maximize Capacitated Coverage problem type and is ignored for all other problem types. It is the default capacity assigned to all facilities in the analysis. You can override the default capacity for a facility by specifying a value in the facility's Capacity
attribute.
target_market_share
This parameter is specific to the Target Market Share problem type and is ignored for all other problem types. It is the percentage of the total demand weight that you want the chosen and required facilities to capture. The task chooses the minimum number of facilities needed to capture the target market share specified here.
measurement_transformation_model
Allowed values: Linear
, Power
, Exponential
Specify the equation for transforming the network cost between facilities and demand points. This parameter, coupled with impedance
parameter, specifies how severely the network impedance between facilities and demand points influences the task's choice of facilities.
In the following list of transformation options, d refers to demand points and f, facilities. "Impedance" refers to the shortest travel distance or time between two locations. So impedance
df is the shortest path (time or distance) between demand point d and facility f, and costdf is the transformed travel time or distance between the facility and demand point. Lambda (λ) denotes the impedance parameter. The measurement
setting determines whether travel time or distance is analyzed.
-
Linear
costdf = λ * impedancedf
The transformed travel time or distance between the facility and the demand point is the same as the time or distance of the shortest path between the two locations. With this option, the impedance parameter (λ) is always set to one.
-
Power
costdf = impedancedfλ
The transformed travel time or distance between the facility and the demand point is equal to the time or distance of the shortest path raised to the power specified by the impedance parameter (λ). Use the Power option with a positive impedance parameter to specify higher weight to nearby facilities.
-
Exponential
costdf = e(λ * impedance)
The transformed travel time or distance between the facility and the demand point is equal to the mathematical constant e raised to the power specified by the shortest-path network impedance multiplied with the impedance parameter (λ). Use the Exponential option with a positive impedance parameter to specify a very high weight to nearby facilities.
Example of measurement transformation model
The next set of graphics and tables use Minimize Impedance to demonstrate the potential effects of using different impedance transformations and parameters.

A sample problem setup using two-mile edges with demand points on the ends and candidate facilities in the middle of the edges is shown.
The Linear
transformation always uses a parameter value of one, so the cost is unchanged, and facility B minimizes that cost.
Facility | Total cost (linear) | Solution facility |
---|---|---|
A | 3+3+5=11 | N/A |
B | 7+1+1=9 | Facility B is chosen. |
Comparison of costs using a linear transformation

Facility B has a lower total transformed cost than facility A when a linear transformation is used.
A Power
transformation with a parameter of two amplifies longer distances enough that facility A minimizes cost instead.
Facility | Total cost (power transformation λ = 2) | Solution facility |
---|---|---|
A | 32 + 32 +52 = 43 | Facility A is chosen. |
B | 72+ 12+ 12 = 51 | N/A |
Comparison of costs using a power transformation with a parameter of 2.0

Facility A has a lower total transformed cost than facility B when a squared power transformation is used.
An exponential
transformation with an impedance parameter of 0.02 favors nearby demand points, so facility B is the solution facility in this case. (The graphic is omitted, since it would look the same as the linear transformation graphic.)
Facility | Total cost (power transformation λ = 0.02) | Solution facility |
---|---|---|
A | e0.02*3 + e0.02*3 + e0.02*5 = 3.23 | N/A |
B | e0.02*7 + e0.02*1 + e0.02*1 = 3.19 | Facility B is chosen |
Comparison of costs using an exponential transformation with a parameter of 0.02
measurement_transformation_factor
Provides an impedance parameter value (λ) to the equation specified in the measurement
parameter. The parameter value is ignored when the impedance transformation is linear. For power and exponential impedance transformations, the value should be nonzero.
travel_direction
Allowed values: Facility to Demand
, Demand to Facility
Specify whether to measure travel times or distances from facilities to demand points or from demand points to facilities.
Facility to Demand
—Direction of travel is from facilities to demand points.Demand to Facility
—Direction of travel is from demand points to facilities.
Travel times and distances may change based on direction of travel. If you're going from point A to point B, you may encounter less traffic or have a shorter path, due to one-way streets and turn restrictions, than if you were traveling in the opposite direction. For instance, going from point A to point B may only take 10 minutes, but going the other direction may take 15 minutes. These differing measurements may affect whether demand points can be assigned to certain facilities because of cutoffs or, in problem types in which demand is apportioned, affect how much demand is captured.
Fire departments commonly measure from facilities to demand points since they are concerned with the time it takes to travel from the fire station to the location of the emergency. A retail store is more concerned with the time it takes shoppers to reach the store; therefore, stores commonly measure from demand points to facilities.
The travel
parameter also determines the meaning of any start time that is provided. See the time
parameter for more information.
time_of_day
Specify the time at which travel begins, or departs, from the starting locations.
Specifying a time of day results in more accurate estimations of travel times because the travel times account for the traffic conditions that are applicable for that date and time.
To use traffic in the analysis, choose a time-based unit for impedance
and assign a value to time
.
The time
value represents the target start time from facilities or demand points, depending on the travel
. The time is specified as Unix time (milliseconds since midnight, January 1, 1970).
If a time of day is not passed in, the service uses static road speeds based on average historical speeds or posted speed limits. It uses posted speeds in areas where historical traffic information isn't available.
If the time
specified is within 4 hours of the current time, live traffic will be used where available. Live traffic retrieves speeds based on phone probe records, sensors, and other data sources and reflects the current travel speeds and predicts speeds for the near future. If the time
specified is earlier than 4 hours or later than 4 hours from the current time, or the road does not have live traffic, typical traffic speeds will be used. Typical speeds are based on historical traffic patterns. The travel time data is aggregated in 15 minute intervals per day of week based on multiple years worth of data. So a road may have a different travel time at Monday at 8 am, Monday at 8:15 am, or Tuesday at 8 am. Since the variance is just at the day of week and time of day, the travel time is the same on a road for any Monday at 8 am, regardless of the month or year.
If your goal is to model typical travel conditions and avoid large variances from the average due to live traffic, it is recommended to use a date from the past to ensure it doesn't coincide with the 4 hour window from the current time. As an extreme example, you can even use dates from 1990.
The Data Coverage page shows the countries Esri currently provides traffic data for.
The service support two kinds of traffic: live and typical.
Typical traffic
To ensure the task uses typical traffic in locations where it is available, choose a time and day of the week, and then convert the day of the week to one of the following dates from 1990:
- Monday—1/1/1990
- Tuesday—1/2/1990
- Wednesday—1/3/1990
- Thursday—1/4/1990
- Friday—1/5/1990
- Saturday—1/6/1990
- Sunday—1/7/1990
Set the time and date as Unix time in milliseconds. For example, to solve for 1:03 p.m. on Thursdays, set the time and date to 1:03 p.m., January 4, 1990; and convert to milliseconds (631458180000
). Although the dates representing days of the week are from 1990, typical traffic is calculated from recent traffic trends—usually over the last two years worth of data.
Live traffic
To use live traffic when and where it is available, choose a time and date and convert to Unix time.
Esri saves live traffic data for 4 hours and references predictive data extending 4 hours into the future. If the time and date you specify for this parameter is outside the 8-hour time window, or the travel time in the analysis continues past the predictive data window, the task falls back to typical traffic speeds.
Show examples
Typical traffic on Thursdays
13:03, January 4, 1990. Typical traffic on Thursdays at 1:03 p.m.
{
"time_Of_day": 631458180000
}
time_zone_for_time_of_day
Allowed values: Geographically Local
, UTC
Specify the time zone or zones of the time
parameter.
-
Geographically Local
—Thetime
value refers to the time zone or zones in which the input points are located. This option causes the analysis to have rolling start times across time zones._Of _day Illustration of setting the value to Geographically Local
Setting
time
to 9:00 a.m., January 4, 1990 (631443600000 milliseconds);_of _day time
to_zone _for _time _Of _Day Geographically Local
; and submitting a valid request causes the drive times for points in the eastern time zone to start at 9:00 a.m. eastern Time and 9:00 a.m. central time for points in the central time zone. (The start times are offset by an hour in real or UTC time.)Input: time
is 9:00 a.m., January 4, 1990 (631443600000 milliseconds), and_Of _day time
is set to_zone _for _time _Of _day Geographically Local
-
UTC
—Thetime
value refers to coordinated universal time (UTC). The start times for all points are simultaneous, regardless of time zones._Of _day Illustration of setting the value to UTC
Setting
time
to 9:00 a.m., January 4, 1990 (631443600000 milliseconds);_Of _day time
to_zone _for _time _Of _Day UTC
, the start times for points in the eastern time zone is 4:00 a.m. Eastern Time and 3:00 a.m. central time for those in the central time zone.Input: time
is 9:00 a.m., January 4, 1990 (631443600000 milliseconds), and_Of _day time
is set to_zone _for _time _Of _day UTC
uturn_at_junctions
Allowed values: Allowed
, Allowed only at Intersections and Dead Ends
, Allowed only at Dead Ends
, Not Allowed
Specify whether to restrict or permit the route from making U-turns at junctions.
To understand the available parameter values, a junction is a point where only two streets intersect each other. If three or more streets intersect at a point, it is called as an intersection. A cul-de-sac is a dead-end.
Expand to learn more about the available parameter values
This parameter can have the following values:
Parameter Value | Description |
---|---|
| U-turns are permitted everywhere. Permitting U-turns implies that the vehicle can turn around at a junction and double back on the same street. ![]() U-turns are permitted at junctions with any number of adjacent streets. |
| U-turns are prohibited at junctions where exactly two adjacent streets meet. ![]() U-turns are permitted only at intersections or dead ends. |
| U-turns are prohibited at all junctions and intersections and are permitted only at dead ends. ![]() U-turns are permitted only at dead ends. |
| U-turns are prohibited at all junctions, intersections, and dead-ends. Even when this parameter value is chosen, a route can still make U-turns at stops. To prohibit U-turns at a stop, you can set its |
point_barriers
Specify one or more points that will act as temporary restrictions or represent additional time or distance that may be required to travel on the underlying streets. For example, a point barrier can be used to represent a fallen tree along a street or a time delay spent at a railroad crossing.
When specifying point barriers, you can set properties for each, such as its name or barrier type.
Show attributes for point_barriers
Attributes for point_barriers
-
Namestringnullable
The name of the barrier.
-
CurbApproachint enumdefault:0
Allowed values:
0
,1
,2
Specify the direction of traffic that is affected by the barrier. The field value is specified as one of the following integers:
0
: Either side of vehicle. The barrier affects travel over the edge in both directions.1
: Right side of vehicle. Vehicles are only affected if the barrier is on their right side during the approach. Vehicles that traverse the same edge but approach the barrier on their left side are not affected by the barrier.2
: Vehicles are only affected if the barrier is on their left side during the approach. Vehicles that traverse the same edge but approach the barrier on their right side are not affected by the barrier.
Because junctions are points and don't have a side, barriers on junctions affect all vehicles regardless of the curb approach.
-
BarrierTypeint enumdefault:0
Allowed values:
0
,2
Specify whether the point barrier restricts travel completely or adds time or distance when it is crossed.
The value for this attribute is specified as one of the following integers:
-
0
: Restriction. Prohibits travel through the barrier. The barrier is referred to as a restriction point barrier since it acts as a restriction.The first map shows the shortest path between two stops without any restriction point barriers. The second map has a road that is blocked by a fallen tree, so the shortest path between the same points is longer.
2
: Added Cost. Traveling through the barrier increases the travel time or distance by the amount specified in theAdditional
,_Time Additional
, or_Distance Additional
attribute. This barrier type is referred to as an added cost point barrier.Cost
The map on the left shows the shortest path between two stops without any added cost point barrier. For the map on the right, the travel time from stop one to stop two would be the same whether going around the north end of the block or the south end; however, since crossing railroad tracks incurs a time penalty (modeled with added cost point barriers), the route with only one railroad crossing is chosen. The cost of crossing the barrier is added to the accumulated travel time of the resulting route.
-
-
FullEdgeint enumdefault:0
Allowed values:
0
,1
Specify how the restriction point barriers are applied to the edge elements during the analysis
0
:False—Permits travel on the edge up to the barrier but not through it.1
:True—Restricts travel anywhere on the associated edge.
-
Additional_Timenumber (non-negative)default:0
The added travel time when the barrier is traversed. This attribute is applicable only for added-cost barriers. The attribute value must be greater than or equal to zero, and its units are the same as those specified in the
measurement
parameter._units -
Additional_Distancenumber (non-negative)default:0
The added distance when the barrier is traversed. This attribute is applicable only for added-cost barriers. The attribute value must be greater than or equal to zero, and its units are the same as those specified in the
measurement
parameter._units -
AdditionalCostnumber (non-negative)default:0
The added cost when the barrier is traversed. This attribute is applicable only for added-cost barriers. The attribute value must be greater than or equal to zero.
-
Bearingnumber (non-negative)nullable
The direction in which a point is moving. The units are degrees and are measured clockwise from true north.
This attribute is used in conjunction with the
Bearing
attribute. Bearing data is usually sent automatically from a mobile device equipped with a GPS receiver. Try to include bearing data if you are loading an input location that is moving, such as a pedestrian or a vehicle. Using this attribute tends to prevent adding locations to the wrong edges, which can occur when a vehicle is near an intersection or an overpass, for example. Bearing also helps the solver determine the side of the street that the point is on.Tol -
BearingTolnumber (range: 0 - 180)default:30nullable
The bearing tolerance value creates a range of acceptable bearing values when locating moving points on an edge using the
Bearing
attribute.If the
Bearing
attribute value is within the range of acceptable values that are generated from the bearing tolerance on an edge, the point can be added as a network location there; otherwise, the closest point on the next-nearest edge is evaluated. The units are in degrees. A value of 30 means that when Network Analyst attempts to add a network location on an edge, a range of acceptable bearing values is generated 15 degrees to either side of the edge (left and right) and in both digitized directions of the edge. -
NavLatencynumber (non-negative)nullable
Indicates how much cost is expected to elapse from the moment GPS information is sent from a moving vehicle to a server and the moment the processed route is received by the vehicle's navigation device.
This attribute is only used in the solve process if the
Bearing
andBearing
fields also have values; however, providing aTol Nav
attribute value is optional, even when values are present in theLatency Bearing
andBearing
.Tol
Show example
This example shows how to use an added cost point barrier to model a five-minute delay at a railroad crossing. The Barrier
attribute is used to specify that the point barrier is of type added cost and the Attr
attribute is used to specify the delay in minutes.
{
"spatialReference": {
"wkid": 4326
},
"features": [
{
"geometry": {
"x": 37.541479,
"y": -122.053461
},
"attributes": {
"Name": "Haley St railroad crossing",
"BarrierType": 2,
"Additional_Time": 5
}
}
]
}
line_barriers
Specify one or more lines that prohibit travel anywhere the lines intersect the streets. For example, a parade or protest that blocks traffic across several street segments can be modeled with a line barrier. A line barrier can also quickly fence off several roads from being traversed, thereby channeling possible routes away from undesirable parts of the street network.

The first map displays the shortest path between two stops. The second map shows the shortest path when several streets are blocked by a polyline barrier.
When specifying line barriers, you can set the name of each barrier using the following attribute:
Show attributes for line_barriers
Attributes for line_barriers
-
Namestring (length: 500)nullable
The name of the barrier.
Show example
This example shows how to add two lines as polyline barriers to restrict travel on the streets intersected by the lines. Barrier 1 is a single-part line feature composed of two points. Barrier 2 is a two-part line feature. The first part is composed of three points, and the second part is composed of two points.
{
"spatialReference": {
"wkid": 102100
},
"features": [
{
"geometry": {
"paths": [
[
[-10804823.397, 3873688.372],
[-10804811.152, 3873025.945]
]
]
},
"attributes": {
"Name": "Barrier 1"
}
},
{
"geometry": {
polygon_barriers
Specify polygons that either completely restrict travel or proportionately scale the time or distance required to travel on the streets intersected by the polygons.
When specifying polygon barriers, you can set properties for each, such as its name or barrier type, using the following attributes:
Show attributes for polygon_barriers
Attributes for polygon_barriers
-
Namestringnullable
The name of the barrier.
-
BarrierTypeint enumdefault:0
Allowed values:
0
,1
Specify polygons that either completely restrict travel or proportionately scale the time or distance required to travel on the streets intersected by the polygons.
The value for this attribute can be specified as one of the following integers:
-
0
: Restriction. Prohibits traveling through any part of the barrier. The barrier is referred to as a restriction polygon barrier since it prohibits traveling on streets intersected by the barrier. One use of this type of barrier is to model floods covering areas of the street that make traveling on those streets impossible.The first map depicts the shortest path between two stops. The second map shows a polygon barrier blocking flooded streets, so the shortest path between the same two stops is different.
-
1
: Scaled Cost. Scales the cost (such as travel time or distance) required to travel the underlying streets by a factor specified using theScaled
orTime Factor Scaled
attribute.Distance Factor If the streets are partially covered by the barrier, the travel time or distance is apportioned and then scaled. For example, a factor of 0.25 means that travel on underlying streets is expected to be four times faster than normal. A factor of 3.0 means it is expected to take three times longer than normal to travel on underlying streets. This barrier type is referred to as a scaled-cost polygon barrier. It can be used to model storms that reduce travel speeds in specific regions, for example.
The first map shows a route that goes through inclement weather without regard for the effect that poor road conditions have on travel time. The second map shows a scaled polygon barrier that doubles the travel time of the roads covered by the storm. The route still passes through the southern tip of the storm since it is quicker to spend more time driving slowly through a small part of the storm rather than driving completely around it. The service uses the modified travel time in calculating the best route, and the modified travel time is reported as the total travel time in the response.
-
-
ScaledTimeFactornumber (non-negative)default:1
This is the factor by which the travel time of the streets intersected by the barrier is multiplied. The field value must be greater than zero.
This field is applicable only for scaled-cost barriers and when the
measurement
parameter is time-based._units -
ScaledDistanceFactornumber (non-negative)default:1
This is the factor by which the distance of the streets intersected by the barrier is multiplied. The field value must be greater than zero.
This field is applicable only for scaled-cost barriers and when the
measurement
parameter is distance-based._units -
ScaledCostFactornumber (non-negative)default:1
The scaled cost when the barrier is traversed. This attribute is applicable only for scaled-cost barriers. The attribute value must be greater than or equal to zero.
This field is applicable only for scaled-cost barriers when the impedance is neither time-based nor distance-based.
Show example
This example shows how to add two polygons as barriers. The first polygon, Flood zone, is a restriction polygon barrier that prohibits travel on the underlying streets. The polygon is a single-part polygon feature composed of four points. The second polygon, Severe weather zone, is a scaled-cost polygon barrier that reduces the travel time on underlying streets to one-third of the original value. The polygon is a two-part polygon feature. Both parts are composed of four points.
{
"spatialReference": {
"wkid": 4326
},
"features": [
{
"geometry": {
"rings": [
[
[-97.0634, 32.8442],
[-97.0554, 32.84],
[-97.0558, 32.8327],
[-97.0638, 32.83],
[-97.0634, 32.8442]
]
]
},
"attributes": {
"Name": "Flood zone",
"BarrierType": 0
use_hierarchy
Specify whether hierarchy will be used when finding the shortest paths.
true
—Use hierarchy when travelling between stops. When hierarchy is used, the service prefers higher-order streets (such as freeways) to lower-order streets (such as local roads) and can be used to simulate the driver preference of traveling on freeways instead of local roads even if that means a longer trip. This is especially true when finding routes to faraway locations, because drivers on long-distance trips tend to prefer traveling on freeways where stops, intersections, and turns can be avoided. Using hierarchy is computationally faster, especially for long-distance routes, since the service can determine the best route from a relatively smaller subset of streets.false
—Do not use hierarchy when travelling between stops. When hierarchy is not used, the service considers all the streets and doesn't prefer higher-order streets when finding the route. This is often used when finding short-distance routes within a city.
restrictions
Specify whether the restrictions will be honored by the service.
A restriction represents a driving preference or requirement. In most cases, restrictions cause roads or pathways to be prohibited, but they can also cause them to be avoided or preferred. For instance, using the Avoid Toll Roads
restriction will result in a route that will include toll roads only when it is required to travel on toll roads to visit a stop. Use Height Restriction
to route around clearances that are lower than the height of the vehicle. If the vehicle is carrying corrosive materials, you can use the Any Hazmat Prohibited
restriction to prevent hauling the materials along roads where it is marked as illegal to do so.
The parameter value is specified as a comma-separated list of restriction names. A value of null
indicates that no restrictions will be used when finding the best route, but only when travel
is set to Custom
.
Example for restrictions
restrictions=[Driving a Truck, Height Restriction, Length Restriction]
Expand to see the restriction names supported by the service
Restriction name | Description |
---|---|
Any Hazmat Prohibited | The results will not include roads where transporting any kind of hazardous material is prohibited. |
Avoid Carpool Roads | The results will avoid roads that are designated exclusively for car pool (high-occupancy) vehicles. |
Avoid Express Lanes | The results will avoid roads designated as express lanes. |
Avoid Ferries | The results will avoid ferries. |
Avoid Gates | The results will avoid roads where there are gates, such as keyed access or guard-controlled entryways. |
Avoid Limited Access Roads | The results will avoid roads that are limited-access highways. |
Avoid Private Roads | The results will avoid roads that are not publicly owned and maintained. |
Avoid Roads Unsuitable for Pedestrians | The results will avoid roads that are unsuitable for pedestrians. |
Avoid Stairways | The results will avoid all stairways on a pedestrian-suitable route. |
Avoid Toll Roads | The results will avoid all toll roads for automobiles. |
Avoid Toll Roads for Trucks | The results will avoid all toll roads for trucks. |
Avoid Truck Restricted Roads | The results will avoid roads where trucks are not allowed, except when making deliveries. |
Avoid Unpaved Roads | The results will avoid roads that are not paved (for example, dirt, gravel, and so on). |
Axle Count Restriction | The results will not include roads where trucks with the specified number of axles are prohibited. The number of axles can be specified using the Number of Axles restriction parameter. |
Driving a Bus | The results will not include roads where buses are prohibited. Using this restriction will also ensure that the results will honor one-way streets. |
Driving a Taxi | The results will not include roads where taxis are prohibited. Using this restriction will also ensure that the results will honor one-way streets. |
Driving a Truck | The results will not include roads where trucks are prohibited. Using this restriction will also ensure that the results will honor one-way streets. |
Driving an Automobile | The results will not include roads where automobiles are prohibited. Using this restriction will also ensure that the results will honor one-way streets. |
Driving an Emergency Vehicle | The results will not include roads where emergency vehicles are prohibited. Using this restriction will also ensure that the results will honor one-way streets. |
Height Restriction | The results will not include roads where the vehicle height exceeds the maximum allowed height for the road. The vehicle height can be specified using the Vehicle Height (meters) restriction parameter. |
Kingpin to Rear Axle Length Restriction | The results will not include roads where the vehicle length exceeds the maximum allowed kingpin to rear axle for all trucks on the road. The length between the vehicle kingpin and the rear axle can be specified using the Vehicle Kingpin to Rear Axle Length (meters) restriction parameter. |
Length Restriction | The results will not include roads where the vehicle length exceeds the maximum allowed length for the road. The vehicle length can be specified using the Vehicle Length (meters) restriction parameter. |
Preferred for Pedestrians | The results will use preferred routes suitable for pedestrian navigation. |
Riding a Motorcycle | The results will not include roads where motorcycles are prohibited. Using this restriction will also ensure that the results will honor one-way streets. |
Roads Under Construction Prohibited | The results will not include roads that are under construction. |
Semi or Tractor with One or More Trailers Prohibited | The results will not include roads where semis or tractors with one or more trailers are prohibited. |
Single Axle Vehicles Prohibited | The results will not include roads where vehicles with single axles are prohibited. |
Tandem Axle Vehicles Prohibited | The results will not include roads where vehicles with tandem axles are prohibited. |
Through Traffic Prohibited | The results will not include roads where through traffic (nonlocal traffic) is prohibited. |
Truck with Trailers Restriction | The results will not include roads where trucks with the specified number of trailers on the truck are prohibited. The number of trailers on the truck can be specified using the Number of Trailers on Truck restriction parameter. |
Use Preferred Hazmat Routes | The results will prefer roads that are designated for transporting hazardous materials. |
Use Preferred Truck Routes | The results will prefer roads that are designated as truck routes, such as roads that are part of the national network as specified by the National Surface Transportation Assistance Act in the United States, or roads that are designated as truck routes by the state or province, or roads that are preferred by truckers when driving in an area. |
Walking | The results will not include roads where pedestrians are prohibited. |
Weight Restriction | The results will not include roads where the vehicle weight exceeds the maximum allowed weight for the road. The vehicle weight can be specified using the Vehicle Weight (kilograms) restriction parameter. |
Weight per Axle Restriction | The results will not include roads where the vehicle weight per axle exceeds the maximum allowed weight per axle for the road. The vehicle weight per axle can be specified using the Vehicle Weight per Axle (kilograms) restriction parameter. |
Width Restriction | The results will not include roads where the vehicle width exceeds the maximum allowed width for the road. The vehicle width can be specified using the Vehicle Width (meters) restriction parameter. |
attribute_parameter_values
Specify additional values required by an attribute or restriction, such as to specify whether the restriction prohibits, avoids, or prefers travel on restricted roads. If the restriction is meant to avoid or prefer roads, you can further specify the degree to which they are avoided or preferred using this parameter. For example, you can choose to never use toll roads, avoid them as much as possible, or prefer them.
The parameter value is specified as a feature in the feature array each having the following attributes:
Attribute
—The name of the restriction or the impedance attribute.Name Parameter
—The name of the parameter associated with the restriction or impedance attribute. A restriction can have one or moreName Parameter
values based on its intended use, which implies you may need multipleName attribute
for a single attribute name._parameter _values Parameter
—The value for theValue Parameter
that is used by the service when evaluating the restriction or impedance attribute.Name
When specifying the attribute
for restrictions, each restriction (listed as Attribute
) has a Parameter
value, Restriction Usage
, that specifies whether the restriction prohibits, avoids, or prefers travel on the roads associated with the restriction and the degree to which the roads are avoided or preferred.
The Parameter
for the Restriction Usage
Parameter
can be assigned any of the following string values or their equivalent numeric values listed in the parentheses:
PROHIBITED
(-1
)—Travel on the roads that have the restriction is prohibited.AVOID
(_HIGH 5
)—It is very unlikely the service will include in the route the roads that are associated with the restriction.AVOID
(_MEDIUM 2
)—It is unlikely the service will include in the route the roads that are associated with the restriction.AVOID
(_LOW 1.3
)—It is somewhat unlikely the service will include in the route the roads that are associated with the restriction.PREFER
(_LOW 0.8
)—It is somewhat likely the service will include in the route the roads that are associated with the restriction.PREFER
(_MEDIUM 0.5
)—It is likely the service will include in the route the roads that are associated with the restriction.PREFER
(_HIGH 0.2
)—It is very likely the service will include in the route the roads that are associated with the restriction.
Expand to see the default Restriction Usage values for the restrictions
Restriction name | Restriction parameter name | Restriction parameter default value |
---|---|---|
Any Hazmat Prohibited | Restriction Usage | PROHIBITED |
Avoid Carpool Roads | Restriction Usage | PROHIBITED |
Avoid Express Lanes | Restriction Usage | PROHIBITED |
Avoid Ferries | Restriction Usage | AVOID_MEDIUM |
Avoid Gates | Restriction Usage | AVOID_MEDIUM |
Avoid Limited Access Roads | Restriction Usage | AVOID_MEDIUM |
Avoid Private Roads | Restriction Usage | AVOID_MEDIUM |
Avoid Roads Unsuitable for Pedestrians | Restriction Usage | AVOID_HIGH |
Avoid Stairways | Restriction Usage | AVOID_HIGH |
Avoid Toll Roads | Restriction Usage | AVOID_MEDIUM |
Avoid Toll Roads for Trucks | Restriction Usage | AVOID_MEDIUM |
Avoid Truck Restricted Roads | Restriction Usage | AVOID_HIGH |
Avoid Unpaved Roads | Restriction Usage | AVOID_HIGH |
Axle Count Restriction | Number of Axles | 0 |
Axle Count Restriction | Restriction Usage | PROHIBITED |
Driving a Bus | Restriction Usage | PROHIBITED |
Driving a Taxi | Restriction Usage | PROHIBITED |
Driving a Truck | Restriction Usage | PROHIBITED |
Driving an Automobile | Restriction Usage | PROHIBITED |
Driving an Emergency Vehicle | Restriction Usage | PROHIBITED |
Height Restriction | Restriction Usage | PROHIBITED |
Height Restriction | Vehicle Height (meters) | 0 |
Kingpin to Rear Axle Length Restriction | Restriction Usage | PROHIBITED |
Kingpin to Rear Axle Length Restriction | Vehicle Kingpin to Rear Axle Length (meters) | 0 |
Length Restriction | Restriction Usage | PROHIBITED |
Length Restriction | Vehicle Length (meters) | 0 |
Preferred for Pedestrians | Restriction Usage | PREFER_LOW |
Riding a Motorcycle | Restriction Usage | PROHIBITED |
Roads Under Construction Prohibited | Restriction Usage | PROHIBITED |
Semi or Tractor with One or More Trailers Prohibited | Restriction Usage | PROHIBITED |
Single Axle Vehicles Prohibited | Restriction Usage | PROHIBITED |
Tandem Axle Vehicles Prohibited | Restriction Usage | PROHIBITED |
Through Traffic Prohibited | Restriction Usage | AVOID_HIGH |
Truck with Trailers Restriction | Restriction Usage | PROHIBITED |
Truck with Trailers Restriction | Number of Trailers on Truck | 0 |
Use Preferred Hazmat Routes | Restriction Usage | PREFER_MEDIUM |
Use Preferred Truck Routes | Restriction Usage | PREFER_HIGH |
Walking | Restriction Usage | PROHIBITED |
WalkTime | Walking Speed (km/h) | 5 |
Weight Restriction | Restriction Usage | PROHIBITED |
Weight Restriction | Vehicle Weight (kilograms) | 0 |
Weight per Axle Restriction | Restriction Usage | PROHIBITED |
Weight per Axle Restriction | Vehicle Weight per Axle (kilograms) | 0 |
Width Restriction | Restriction Usage | PROHIBITED |
Width Restriction | Vehicle Width (meters) | 0 |
Syntax and code sample for attribute parameter values
{
"features": [
{
"attributes": {
"<field1>": "<value11>",
"<field2>": "<value12>",
"<field3>": "<value13>"
}
},
{
"attributes": {
"<field1>": "<value21>",
"<field2>": "<value22>",
"<field3>": "<value13>"
}
}
]
}
allocation_line_shape
Allowed values: Straight Line
, None
Specify the type of line features that are output by the service. The parameter accepts the following values:
Straight Line
—Straight lines between solution facilities and the demand points allocated to them are returned. Drawing straight lines on a map helps you visualize how demand is allocated.None
—A table containing data about the shortest paths between solution facilities and the demand points allocated to them is returned; lines are not returned.
Regardless of the value you choose for the allocation
parameter, the shortest route is determined by minimizing the travel time or the travel distance, not using the straight-line distance between incidents and facilities. That is, this parameter only changes the output line shapes; it doesn't change the measurement method.
time_impedance
Allowed values: Minutes
, Travel
, Walk
, Truck
, Truck
Specify time-based impedance.
distance_impedance
Allowed values: Miles
, Kilometers
Specify distance-based impedance.
The value represents the travel distance along road segments or on other parts of the transportation network.
Miles
—Length measurements along roads are stored in miles and can be used for performing analysis based on shortest distance.Kilometers
—Length measurements along roads are stored in kilometers and can be used for performing analysis based on shortest distance.
impedance
Allowed values: Travel
, Minutes
, Truck
, Truck
, Walk
, Miles
, Kilometers
Specify the impedance.
Impedance is a value that quantifies travel along the transportation network. Travel distance is an example of impedance; it quantifies the length of walkways and road segments. Similarly, drive time—the typical time it takes to drive a car along a road segment—is an example of impedance. Drive times may vary by type of vehicle—for instance, the time it takes for a truck to travel along a path tends to be longer than a car—so there can be many impedance values representing travel times for different vehicle types. Impedance values may also vary with time; live and typical traffic reference dynamic impedance values. Each walkway and road segment stores at least one impedance value. When performing a network analysis, the impedance values are used to calculate the best results, such as finding the shortest route—the route that minimizes impedance—between two points.
The parameter can be specified using the following values:
Travel
—Historical and live traffic data is used. This option is good for modeling the time it takes automobiles to travel along roads at a specific time of day using live traffic speed data where available. When usingTime Travel
, you can optionally set the TravelTime::Vehicle Maximum Speed (km/h) attribute parameter to specify the physical limitation of the speed the vehicle is capable of traveling.Time Minutes
—Live traffic data is not used, but historical average speeds for automobiles data is used.Truck
—Historical and live traffic data is used, but the speed is capped at the posted truck speed limit. This is good for modeling the time it takes for the trucks to travel along roads at a specific time. When usingTravel Time Truck
, you can optionally set the TruckTravelTime::Vehicle Maximum Speed (km/h) attribute parameter to specify the physical limitation of the speed the truck is capable of traveling.Travel Time Truck
—Live traffic data is not used, but the smaller of the historical average speeds for automobiles and the posted speed limits for trucks are used.Minutes Walk
—The default is a speed of 5 km/hr on all roads and paths, but this can be configured through the WalkTime::Walking Speed (km/h) attribute parameter.Time Miles
—Length measurements along roads are stored in miles and can be used for performing analysis based on shortest distance.Kilometers
—Length measurements along roads are stored in kilometers and can be used for performing analysis based on shortest distance.
If you choose a time-based impedance, such as Travel
, Truck
, Minutes
, Truck
, or Walk
, the measurement
parameter must be set to a time-based value; if you choose a distance-based impedance such as Miles
, Kilometers
, the measurement
must be distance-based.
save_output_network_analysis_layer
Specify whether the service will save the analysis settings as a network analysis layer file.
You cannot work directly with this file even when you open the file in an ArcGIS Desktop application such as ArcGIS Pro. It is meant to be sent to Esri Technical Support to diagnose the quality of results returned from the service.
-
true
—The network analysis layer file will be saved. The file can be downloaded from the URL provided as part of theoutput
parameter._network _analysis _layer _package -
false
—The network analysis layer file will not be saved.
output_format
type:enumdefault:Feature Set
Allowed values: Feature Set
, JSO
, Geo
Specify the format in which the output features will be returned.
-
Feature Set
—The output features will be returned as feature classes and tables. -
JSO
—The output features will be returned as a compressed file containing the JSON representation of the outputs. When this option is specified, the output is a single file (with aN File .zip
extension) that contains one or more JSON files (with a.json
extension) for each of the outputs created by the service. -
Geo
—The output features will be returned as a compressed file containing the GeoJSON representation of the outputs. When this option is specified, the output is a single file (with aJSO N File .zip
extension) that contains one or more GeoJSON files (with a.geojson
extension) for each of the outputs created by the service.
context
This parameter contains additional settings that affect task operation, for example, the spatial reference of the output features.
ignore_invalid_locations
Specify whether invalid input locations will be ignored.
true
—Network locations that are unlocated will be ignored and the analysis will run using valid network locations only. The analysis will also continue if locations are on non-traversable elements or have other errors. This is useful if you know the network locations are not all correct, but you want to run the analysis with the network locations that are valid.false
—Invalid locations will not be ignored. Do not run the analysis if there are invalid locations. Correct the invalid locations and rerun the analysis.
Response details
Upon successful completion, the service returns the chosen facilities, participating demand points, connecting lines between demand points and the facilities they were assigned to, and the status of whether the analysis was successful.
output_facilities
Provides access to the chosen, required, and competitor facilities, as well as any candidate facilities that were not chosen.
Show attributes for output facilities
-
Namestring (length: 500)nullable
The name of the facility. The values for this field are copied from the
Name
field on the input facilities. -
FacilityOIDintegernullable
The
Object
value of the corresponding input facility feature. This field is often used to join information from the input facilities.ID -
FacilityTypeint enumnullable
The best facilities, or those that are chosen in the analysis, are indicated in this field. The facility types are as follows:
0
:Candidate—The service didn't choose the candidate facility to be part of the solution.1
:Required—Prior to submitting the analysis, the facility was designated as required; therefore, it is part of the solution regardless of how much demand it captured.2
:Competitor—The facility represents the rivals and will remove demand from the problem. Competitor facilities are specific to the Maximize Market Share and Target Market Share problem types; they are ignored in other problem types.3
:Chosen—These are the chosen facilities; that is, they are candidate facilities that capture the most demand.
-
Weightintegernullable
The relative weighting of the facility, which is used to rate the attractiveness, desirability, or bias of one facility compared to another. The values for this field are copied from the
Weight
field on the input facilities. -
Capacityintegernullable
The amount of weighted demand the facility is capable of supplying. The values for this field are copied from the Capacity field on the input facilities.
-
DemandCountintegernullable
A count of demand points allocated to the facility. A value other than zero means the facility was part of the solution, either as a required, competitor, or chosen facility.
-
DemandWeightintegernullable
The sum of the effective weight from all demand points that were allocated to the facility. The value is the sum of all the weight values from the demand points that were allocated to the facility. In the case of the Maximize Attendance and Market Share problem types, the value is an apportioned sum of the Weight field values, since these problem types allow demand to decay with distance or be split among many facilities.
-
Total_Minutesintegernullable
The sum of travel time in minutes between the facility and each of the demand points that were allocated to the facility.
This field is included only if the travel mode set for the analysis has an impedance attribute that is time based.
-
TotalWeighted_Minutesnumbernullable
This field stores the cumulative weighted cost in minutes for a facility. The weighted cost for a demand point is its weight multiplied by the least-cost path between the facility and the demand point. The weighted cost for a facility is the sum of all the weighted costs of demand points that are allocated to the facility.
For example, if a demand point with a weight of 2 is allocated to a facility 10 minutes away, the
Total
value is 20 (2 x 10). If another demand point with a weight of 3 is allocated to the same facility and is 5 minutes away, theWeighted _Minutes Total
value increases to 35 (3 x 5 + 20).Weighted _Minutes This field is included only if the travel mode set for the analysis has an impedance attribute that is time based.
-
Total_Milesnumbernullable
The sum of travel distance in miles between the facility and each of the demand points that were allocated to the facility.
This field is included only if the travel mode set for the analysis has an impedance attribute that is distance based.
-
TotalWeighted_Milesnumbernullable
This field stores the cumulative weighted cost in miles for a facility. The weighted cost for a demand point is its weight multiplied by the least-cost path between the facility and the demand point. The weighted cost for a facility is the sum of all the weighted costs of demand points that are allocated to the facility.
For example, if a demand point with a weight of 2 is allocated to a facility 10 miles away, the
Total
value is 20 (2 x 10). If another demand point with a weight of 3 is allocated to the same facility and is 5 miles away, theWeighted _Miles Total
value increases to 35 (3 x 5 + 20)Weighted _Miles This field is included only if the travel mode set for the analysis has an impedance attribute that is distance based.
-
Total_Kilometersnumbernullable
This field is analogous to the
Total
field, except values are in kilometers instead of miles._Miles -
TotalWeighted_Kilometersnumbernullable
This field is analogous to the
Total
field, except values are in kilometers instead of miles.Weighted _Miles -
Total_Othernumbernullable
A sum of travel cost in unknown units between the facility and each of the demand points that were allocated to the facility.
This field is included only if the travel mode set for the analysis has an impedance attribute that is neither time based nor distance based.
-
TotalWeighted_Othernumbernullable
This field stores the cumulative weighted cost in unknown units for a facility. The weighted cost for a demand point is its weight multiplied by the least-cost path between the facility and the demand point. The weighted cost for a facility is the sum of all the weighted costs of demand points that are allocated to the facility.
This field is included only if the travel mode set for the analysis has an impedance attribute that is neither time based nor distance based.
-
SourceIDinteger (non-negative)nullable
The numeric identifier of the network dataset source feature class on which the input point is located.
-
SourceOIDinteger (non-negative)nullable
The object ID of the feature in the source on which the input point is located.
-
PosAlongnumber (non-negative)nullable
The position along the digitized direction of the source line feature. This value is stored as a ratio. This attribute is null if the network location references a junction.
-
SideOfEdgeint enum
Allowed values:
1
,2
The side of the edge in relation to the digitized direction of the line feature.
This attribute is limited to a domain of two values:
1
: Right Side2
: Left Side
-
Statusint enum
Allowed values:
0
,1
,2
,3
,4
,5
,6
,7
Indicates the status of the point with respect to its location on the network and the outcome of the analysis. The possible values are as following:
0
: OK.The point was located on the network.1
: Not Located. The point was not located on the network and was not included in the analysis.2
: Network element not located. The network element identified by the point's network location fields cannot be found. This can occur when a network element where the point should be was deleted, and the network location was not recalculated.3
: Element not traversable. The network element that the point is located on is not traversable. This can occur when the element is restricted by a restriction attribute.4
: Invalid Field Values. Field values fall outside a range or coded-value domain. For example, a negative number exists where positive numbers are required.5
: Not reached. The point cannot be reached by the solver. The point may be on a separate, disconnected area of the network from the other inputs, or barriers or restrictions prevent travel to or from the point.6
: Time window violation. The point could not be reached within the designated time windows. This status only applies to network analysis types that support time windows.7
: Not located on closest. The closest network location to the point is not traversable because of a restriction or barrier, so the point has been located on the closest traversable network feature instead. If time windows are used and the route arrives early or late, the value changes to 6 (Time window violation)
-
Bearingnumber (non-negative)nullable
The values for this field are copied from the
Bearing
field on the input facilities. -
BearingTolnumber (non-negative)nullable
The values for this field are copied from the
Bearing
field on the input facilities.Tol -
NavLatencynumber (non-negative)nullable
The values for this field are copied from the
Nav
field on the input facilities.Latency
output_demand_points
type:feature
Provides access to the demand points that participated in the analysis: those that were and were not allocated to facilities.
Show attributes for output demand points
-
Namestring (length: 500)nullable
The name of the demand point. The values for this field are copied from the
Name
field on the input demand points. -
FacilityOIDintegernullable
The
Object
value of the facility to which this demand point is allocated. The field value is Null if the demand point is not allocated to any facility. This field is often used to join information from the input facilities to the output demand points.ID -
DemandOIDintegernullable
The
Object
value of the corresponding input demand point feature. This field is often used to join information.ID -
Weightintegernullable
The relative weighting of the demand point. The values for this field are copied from the Weight field on the input demand points.
-
AllocatedWeightintegernullable
The amount of demand allocated to chosen and required facilities. The value excludes demand allocated to competing facilities. The value options are as follows:
Null
—The demand point wasn't assigned to any facility. This can result, for example, if the demand point could not be reached from any facility.0
—The demand point was only assigned to competing facilities.Positive, nonzero value
—Indicates how much demand is assigned to the chosen and required facilities.
-
GroupNamestring (length: 500)nullable
The name of the group of which the demand point is a part. The values for this field are copied from the
Group
field on the input demand points.Name -
ImpedanceTransformationintegernullable
The values for this field are copied from the
Impedance
field on the input demand points.Transformation -
ImpedanceParameternumbernullable
The values for this field are copied from the
Impedance
field on the input demand points.Parameter -
Cutoffnumbernullable
The demand point can't be allocated to a facility that is beyond the value indicated here. The values for this field are copied from the Cutoff field on the input demand points.
-
SourceIDinteger (non-negative)nullable
The numeric identifier of the network dataset source feature class on which the input point is located.
-
SourceOIDinteger (non-negative)nullable
The object ID of the feature in the source on which the input point is located.
-
PosAlongnumber (non-negative)nullable
The position along the digitized direction of the source line feature. This value is stored as a ratio. This attribute is null if the network location references a junction.
-
SideOfEdgeint enum
Allowed values:
1
,2
The side of the edge in relation to the digitized direction of the line feature.
This attribute is limited to a domain of two values:
1
: Right Side2
: Left Side
-
Statusint enum
Allowed values:
0
,1
,2
,3
,4
,5
,6
,7
Indicates the status of the point with respect to its location on the network and the outcome of the analysis. The possible values are as following:
0
: OK.The point was located on the network.1
: Not Located. The point was not located on the network and was not included in the analysis.2
: Network element not located. The network element identified by the point's network location fields cannot be found. This can occur when a network element where the point should be was deleted, and the network location was not recalculated.3
: Element not traversable. The network element that the point is located on is not traversable. This can occur when the element is restricted by a restriction attribute.4
: Invalid Field Values. Field values fall outside a range or coded-value domain. For example, a negative number exists where positive numbers are required.5
: Not reached. The point cannot be reached by the solver. The point may be on a separate, disconnected area of the network from the other inputs, or barriers or restrictions prevent travel to or from the point.6
: Time window violation. The point could not be reached within the designated time windows. This status only applies to network analysis types that support time windows.7
: Not located on closest. The closest network location to the point is not traversable because of a restriction or barrier, so the point has been located on the closest traversable network feature instead. If time windows are used and the route arrives early or late, the value changes to 6 (Time window violation)
-
Bearingnumber (non-negative)nullable
The values for this field are copied from the
Bearing
field on the input facilities. -
BearingTolnumber (non-negative)nullable
The values for this field are copied from the
Bearing
field on the input facilities.Tol -
NavLatencynumber (non-negative)nullable
The values for this field are copied from the
Nav
field on the input facilities.Latency
output_allocation_lines
Provides access to the lines that connect demand points to the facilities to which they are allocated. Such lines are referenced in the documentation as allocation lines.
Show attributes for output allocation lines
-
Namestring (length: 500)nullable
The name of the allocation line that includes the names of the demand point and facility to which the demand point is allocated.
The name of the allocation line is based on the names of the associated facility and demand point.
The facility name is first if the
travel
parameter value is set to_direction Facility To Demand
. For example, Facility 5 - Demand 3 indicates that the route travels from Facility 5 to Demand 3.If
Demand To Facility
is specified as thetravel
parameter value, the demand point name is first, for example, Demand 3 — Facility 5 ._direction -
FacilityOIDintegernullable
The
Object
value of the corresponding input facility feature. This field is often used to join information from the facilities to the allocation lines.ID -
DemandOIDintegernullable
The
Object
value of the corresponding input demand point feature. This field is often used to join information from the demand points to the allocation lines.ID -
Weightintegernullable
The weight assigned from the connected demand point to the connected facility.
-
Total_Minutesintegernullable
The travel time in minutes between the facility and the demand point. Although the allocation lines have either straight or null geometries, the cost always refers to travel times as measured on a transportation network, not straight-line distances.
-
TotalWeighted_Minutesnumbernullable
The weighted cost of traveling between the facility and the demand point in minutes. This is the
Total
value multiplied by the weight of the demand point allocated to the facility._Minutes This field is included only if the travel mode set for the analysis has an impedance attribute that is time based.
-
Total_Milesnumbernullable
The travel distance in miles between the facility and the demand point. Although the allocation lines have either straight or null geometries, the cost always refers to travel distances as measured on a transportation network, not straight-line distances.
-
Total_Kilometersnumbernullable
The travel distance in kilometers between the facility and the demand point. Although the allocation lines have either straight or null geometries, the cost always refers to travel distances as measured on a transportation network, not straight-line distances.
-
TotalWeighted_Milesnumbernullable
The weighted cost of traveling between the facility and the demand point in miles. This is the
Total
value multiplied by the weight of the demand point allocated to the facility._Miles This field is included only if the travel mode set for the analysis has an impedance attribute that is distance based.
-
TotalWeighted_Kilometersnumbernullable
The weighted cost of traveling between the facility and the demand point in kilometers. This is the
Total
value multiplied by the weight of the demand point allocated to the facility._Kilometers This field is included only if the travel mode set for the analysis has an impedance attribute that is distance based.
-
Total_Othernumbernullable
The travel cost in unknown units between the facility and the demand point. Although the allocation lines have either straight or null geometries, the cost always refers to travel cost as measured on a transportation network, not straight-line distances.
This field is included only when the travel mode used for the analysis has an impedance attribute that is neither time-based nor distance-based.
-
TotalWeighted_Othernumbernullable
The weighted cost of traveling between the facility and the demand point in unknown units. This is the
Total
value multiplied by the weight of the demand point allocated to the facility._Cost This field is included only if the travel mode set for the analysis has an impedance attribute that is neither time-based nor distance-based.
usage_cost
This parameter returns the credits used by the analysis.
Example
The following shows an example of the usage
parameter in which the analysis generated 9 billable objects (represented by numObjects ) and 4.5 credits were used by the analysis.
{
"paramName": "Usage_Cost",
"dataType": "GPString",
"value": {
"numObjects": 9,
"credits": 4.5
}
}
solve_succeeded
Determine if the service was able to complete successfully. The error messages for the failure can be obtained by making a request to get the status of the job.
Example
The following shows an example of the solve
parameter
{
"paramName": "solve_succeeded",
"dataType": "GPBoolean",
"value": true
}
output_result_file
Use this parameter to access the results from the analysis as a .zip file containing one or more files for each output. The format of the individual file is specified by the Output Format parameter. The parameter value is not populated when the output
parameter is set to Feature Set
.
save_output_network_analysis_layer
Provides access to the network analysis layer file that stores the analysis settings and the inputs and outputs used for the analysis. The parameter value is populated only when the save
parameter is set to True
.
Examples
Choose the best store location
In this example, you will find the one store location that provides the best access to customers.
Before performing the analysis, you will need to find locations that could accommodate your store. This may include surveying the real estate market to find commercial properties that are the right size and have the right price. The candidate facilities are specified with the facilities
facilities parameter. Households are added as demand
and weighted by the number of people living there. They represent potential customers.
The facilities and demand points are in the default spatial reference, WGS84, so the spatial
property is not required.
The first request submits a job and returns the job id.
Request
POST https://logistics.arcgis.com/arcgis/rest/services/World/LocationAllocation/GPServer/SolveLocationAllocation/submitJob? HTTP/1.1
Content-Type: application/x-www-form-urlencoded
f=json
&token=<ACCESS_TOKEN>
&facilities={
"features": [
{
"attributes": {
"OBJECTID": 1,
"Name": "Facility A",
"FacilityType": 0,
"CurbApproach": 0
},
"geometry": {
"x": -58.557329417999938,
"y": -34.587693706999971
}
},
{
Response (JSON)
{
"jobId": "jb937dc0c7e324e68b95923c8fd9c8a1b",
"jobStatus": "esriJobSubmitted"
}
Service limits
The table below lists the limits that apply to this service.
Limit Description | Limit Value |
---|---|
Maximum number of facilities: | 1,000 |
Maximum number of facilities to find: | 100 |
Maximum number of demand points: | 10,000 |
Maximum number of (point) barriers: | 250 |
Maximum number of street features intersected by polyline barriers: | 500 |
Maximum number of street features intersected by polygon barriers: | 2,000 |
Force hierarchy beyond a straight-line distance of: (If the straight-line distance between any facility and demand point is greater than the limit shown here, the analysis uses hierarchy, even if useHierarchy is set to false.) | 50 miles (80.46 kilometers) |
Maximum time a client can use the job request service: | 1 hour (3,600 seconds) |