|
POST
|
You can first make a network dataset from your streets shape files so that you can route on it. Make sure your Origin and Destination route point pairs have a common ID that can be used to match them up during route solving. You can create a new route layer. Then load the origin set of points making sure that you map the ID to the ROUTENAME property. Then load the destination set of points making sure that you map the ID to the ROUTENAME property. Now you have basically told the route layer to solve multiple routes like A to B, C to D, E to F, etc., Solve the route layer and you will have all the OD route pairs solved. You can read more about ROUTENAME here: Route analysis—Help | ArcGIS Desktop Jay Sandhu
... View more
01-29-2019
09:43 AM
|
1
|
0
|
917
|
|
POST
|
Just to update this thread, Leon was able to successfully solve the OD Cost Matrix Layer and get the distance results he needed. Jay Sandhu
... View more
01-28-2019
11:11 AM
|
0
|
0
|
5087
|
|
POST
|
You can definitely use your local StreetMap premium data and the OD Cost Matrix Solver (will work faster than the Closest Facility if you do not need the actual route geometry returned). However these network analyst solvers return back the shortest path distance. They do not return back Euclidean or Manhattan distances as those are based on the coordinates of the locations and not on the street network. Jay Sandhu
... View more
01-24-2019
04:21 PM
|
0
|
2
|
5087
|
|
POST
|
You can use the GP tool to get to the traversal results. Copy Traversed Source Features—Help | ArcGIS Desktop
... View more
01-10-2019
09:08 AM
|
0
|
0
|
3455
|
|
POST
|
VRP does not have any additional multi-processor support. The process is usually CPU bound, so having a faster computer CPU like an I7 and/or faster disk (Solid state drive) will help speed up the solve times. The fast disk is to hold the network dataset as well as the computer TEMP folders. Jay Sandhu
... View more
12-21-2018
01:38 PM
|
1
|
1
|
1190
|
|
POST
|
OD with 1 facility will return the closest. Specifying a cutoff limits how far it will search out from the origin before giving up. It is always a good idea to have a cutoff in case you have a large network and there are unreachable portions of the network (due to connectivity issues or barriers) which can cause a complete search of the network looking to reach destinations that are not reachable! The output lines feature class only has what was found. So if some origins do not have a destination within the cutoff, they will not be included. Setting the output lines to none will be slightly faster but may not be measurable for small output. Jay Sandhu
... View more
12-21-2018
08:09 AM
|
1
|
2
|
3092
|
|
POST
|
OD and CF are similar but OD runs faster as it does not need to keep track of the traversal results and return route geometry. When you run these solvers with a 60 minute cutoff, it is quite efficient as they just ignore the destinations that were not encountered once the 60 minutes has been searched. The return list of destinations (in the line feature class) has a destination rank field and is sorted on it. This tells you the closest, second closest, etc., destination. You should be able to select all the rows where destination rank is 1 and get the closest to each origin without having to run any summary statistics. AND if you only need 1 closest, then why not solve for 1 destination in the OD solve? I do not understand why you are comparing against CF? As far as performance, it depends how far apart are all the points and how many are in the 60 minute cutoff as it takes a while to write out the results to the line feature class. For example if there are a 100 destinations within 60 minutes of each of the 350K origins, it will create 35 million rows. Jay Sandhu
... View more
12-20-2018
04:38 PM
|
2
|
5
|
3092
|
|
POST
|
To solve all the OD pairs, I hope you have loaded them into One route layer with the routename property. Once you solve the route layer, you can run the GP tool, Copy Traversed Source Features. This will create a new line feature class that has all the roads that were traversed by all the OD pair routes. Now you can count how many times the SourceOID is repeated. For example you can use the GP Frequency tool and with the SourceOID as the frequency field and summary another field like the commuter count. Jay Sandhu
... View more
12-18-2018
04:10 PM
|
1
|
0
|
3591
|
|
POST
|
Most likely the spatial index on the streets feature class that makes up the network dataset (or the points you are loading) is missing or stale. See below for information on how to update it: Rebuild a spatial index—ArcGIS Help | ArcGIS Desktop
... View more
12-06-2018
11:13 AM
|
1
|
0
|
2027
|
|
POST
|
It is hard to know what could be going on without examining the data, but you can start by checking the stops Status field. This is set to Ok if a route was found to it. Select all the stops where the Status is not OK and see what's the status and see what in the network is preventing the routing (e.g., restrictions, disconnected network, etc.). Jay Sandhu
... View more
11-15-2018
02:08 PM
|
0
|
0
|
3922
|
|
POST
|
If your data is many stops per truck id, rather then iterating over each set of stops, why not load them all into one route layer but map the truck id to the ROUTENAME property? That way multiple sets of routes (one per truck id) will be loaded into one route layer and all will be solved with one solve. Then you can export them out as needed. Read more on ROUTENAME here: Route analysis—Help | ArcGIS Desktop Jay Sandhu
... View more
11-15-2018
09:11 AM
|
1
|
2
|
3922
|
|
POST
|
>What I need to do is find all intersections that are--as close as possible--equidistant to the central bus stop and the outside edge of the polygon they all fall within. Have you looked at Service Areas in Network Analyst. This solver produces drive time polygons up to a specified distance or time (break values) away from a feature. So you can use your central feature as the facility and drive out X miles. Then select the points that fall on or near the polygon boundary and count them. Repeat for different break values for what ever criteria you have. Service area analysis layer—ArcGIS Pro | ArcGIS Desktop Jay Sandhu
... View more
11-14-2018
08:37 AM
|
0
|
0
|
890
|
|
POST
|
Most likely there is some issue with the network dataset. Have you done a simple route on that network to make sure you are able to find correct paths? Also, what does the "two different feature layers" in your description mean? >I created a network dataset using a road network (in arccatalog), two different points feature layers. Is it possible that you have included the incident and facility point feature classes as sources in the network dataset? If yes, then if they are not directly on line features, they will become stand alone junctions and your incident and facilities in the closest facility layer will snap to these stand alone junctions and not find any paths in the network. In this case, remove these two point sources from the network dataset and rebuild the network and then create a CF layer and solve. Jay Sandhu
... View more
11-07-2018
09:48 AM
|
1
|
1
|
4397
|
|
POST
|
If the timber volumes are attached to the street features of your network dataset, then you can create an impedance attribute called TimberVolume and load it from the field in your street features. Build the network. Now when you solve a route analysis minimizing length, you can choose to accumulate another impedance attribute. You can pick the TimberVolume. Now when the path is returned it will have the total volume on it. You can then run the Copy Traversed Source Features and this will create a line feature class of every edge that was traversed by the path and it will have the individual accumulates on each edge. Look up the accumulate attributes on route tool: Make Route Analysis Layer—ArcGIS Pro | ArcGIS Desktop And traversed features here: Copy Traversed Source Features—ArcGIS Pro | ArcGIS Desktop Jay Sandhu
... View more
11-05-2018
04:33 PM
|
0
|
1
|
1003
|
|
POST
|
The first obvious thing to check is that the published routing service has the oneway restrictions turned on and not off as part of the service. You should be able to bring up the properties of the route layer in ArcMap that was used to publish the routing service. Jay Sandhu
... View more
11-02-2018
03:26 PM
|
1
|
0
|
963
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-21-2023 09:39 AM | |
| 1 | 11-20-2024 09:29 AM | |
| 1 | 10-09-2024 09:23 AM | |
| 1 | 09-09-2024 08:54 AM | |
| 1 | 09-05-2024 10:42 AM |
| Online Status |
Offline
|
| Date Last Visited |
05-29-2026
01:54 PM
|