|
POST
|
You have to add your own impedance attribute to the network and set up the "evaluators" correctly to calculate the travel time based on the road lengths and the speed limits. Here are some documentation pages that might help you out: - Exercise 1: Creating a network dataset—Help | ArcGIS Desktop - Understanding network attributes—Help | ArcGIS Desktop - Types of evaluators used by a network—Help | ArcGIS Desktop That said, unless you have a compelling reason to create your own network dataset in this manner, you might get better results more quickly by either purchasing a Streetmap Premium network dataset for your area of interest or using Esri's ArcGIS Online routing services. The data quality will likely be better, and it saves you a large amount of time in creating and debugging your own network dataset.
... View more
01-18-2017
11:49 AM
|
1
|
2
|
3281
|
|
POST
|
I'm not sure what you mean by a "pedestrian network configuration file", but have you checked this out: GitHub - Esri/arcgis-osm-editor: ArcGIS Editor for OpenStreetMap is a toolset for GIS users to access and contribute to … I believe this has tools for creating a network dataset for use with Network Analyst. You can download the latest release from the "Releases" tab.
... View more
01-11-2017
12:51 PM
|
0
|
3
|
3412
|
|
POST
|
Hello, Pan. I wouldn't expect you to run out of memory solving a Route with 1000 stops. I recommend you talk to Esri Tech Support. http://support.esri.com/contact-tech-support They can look at your data, and if they can't resolve the problem, or it proves to be a bug, they can submit a ticket to the Network Analyst development team.
... View more
01-10-2017
02:57 PM
|
1
|
0
|
1217
|
|
POST
|
Hello, Tory. This capability is not available out-of-the-box ArcGIS functionality. However, there is a tool you can download for free from ArcGIS Online that will allow you to do it in ArcMap, Add GTFS to a Network Dataset. You will need your own street data for your area of interest as well as a GTFS public transit dataset for the transit agency or agencies you care about. A full set of instructions on how to create your network is included in the download and is also available here. You can get some further ideas and best practices for analyzing public transit in ArcGIS from this Story Map.
... View more
01-09-2017
04:25 PM
|
2
|
0
|
1237
|
|
POST
|
Unfortunately, no, there is no way to automatically carry over fields from the input into the output Lines sublayer. You have to use a join. The last code sample on the Make OD Cost Matrix Layer documentation page gives an example of doing something very similar to this, using joins: Make OD Cost Matrix Layer—Help | ArcGIS Desktop
... View more
01-09-2017
08:10 AM
|
2
|
1
|
2585
|
|
POST
|
Streetmap Premium is a dataset that contains a routable network as well as a lot of other stuff. You can use the routable network to calculate the network distance between addresses using the Network Analyst tools (particularly Route or OD Cost Matrix). The network contains "travel modes" that allow you to switch between different types of travel, such as driving a car, driving a truck, or walking. It does NOT contain any public transit information, such as buses, with actual schedules. If the Streetmap Premium data suited your needs, but you didn't want to purchase your own copy, you could also use the ArcGIS Online services to calculate the same thing. The road networks used there are the same data as Streetmap Premium, and you just pay on a per-use basis. Again, there is no public transit information. If you want to add some more details to your question or ask for further clarification, I can go into further detail.
... View more
12-29-2016
08:12 AM
|
0
|
0
|
591
|
|
POST
|
Yes, this tool is only available in ArcGIS Pro. It is not available in ArcMap. Documentation/help for the latest version of ArcMap is available here: ArcMap | ArcGIS for Desktop Documentation for ArcMap 10.2 is here: ArcGIS Help (10.2, 10.2.1, and 10.2.2)
... View more
10-10-2016
08:23 AM
|
2
|
1
|
1469
|
|
POST
|
Actually, since you already know the routes between the stops, this sounds like a problem you can solve with linear referencing. You can use the linear referencing tools, or if you're comfortable with python, you can grab the geometry objects of your stops and routes and use the measureOnLine method.
... View more
10-03-2016
09:00 AM
|
0
|
0
|
1077
|
|
POST
|
Oh, I see. So the real question is why your network sometimes isn't building successfully even though it says it is. Are you getting build errors? If so, the Build gp tool should return a warning message saying something like "Build succeeded with warnings" and give you a path to a text file containing the list of errors. It would definitely be worth your investigating this file to see if that gives you any clues. I'm pretty sure it's possible for the build to succeed but for there to be significant build errors such that most/all of the edges are missing.
... View more
09-15-2016
08:04 AM
|
1
|
1
|
2153
|
|
POST
|
I can't quite tell from your descriptions what the problem is, but it sounds like a potential bug. Your best bet would be to report this to Esri Support. They can investigate the problem and either help you fix your network or file a bug so our development staff can fix the issue.
... View more
09-14-2016
02:51 PM
|
0
|
0
|
1242
|
|
POST
|
Hello, Jeff. We already have some tools to use GTFS data with ArcGIS, available for download here: http://www.arcgis.com/home/group.html?id=d8e84e82803e4c3690c30f9ef0f960fc These do not use the Data Interoperability Extension, though.
... View more
09-14-2016
02:47 PM
|
1
|
0
|
837
|
|
POST
|
The number of network edges/junctions/turns is not available in python, unfortunately. You could access it via ArcObjects if you were really desperate. You can also count the number of features in the edge, junction, and turn source feature classes, but this isn't always a one-to-one mapping with the number in the network dataset because of your connectivity policy. What is your ultimate goal in obtaining this information. Maybe we can come up with a different way to achieve the same thing.
... View more
09-14-2016
02:43 PM
|
1
|
3
|
2153
|
|
POST
|
First, are you sure the Streetmap Premium network dataset is set as the active network dataset when you create your new OD Matrix layer? Check the Network Analyst toolbar to see which network is selected. Maybe you inadvertently created the OD layer referencing your tutorial dataset, and then you added a point in some faraway location, which is what caused it to fail to locate. If that isn't the problem, then maybe there was a copy error when you copied the network from the DVDs. The Streetmap Premium data should be ready to go without any further steps. If re-copying doesn't fix the problem, then you should talk to Esri Support (Esri Support Home) because it doesn't sound like the kind of problem that would be easy to diagnose and fix on GeoNet.
... View more
08-26-2016
02:28 PM
|
1
|
1
|
1112
|
|
POST
|
Hello, bap. Add/load locations needs a feature class or layer. It can't ingest the xy coordinates directly from a CSV file. You can turn your CSV into a feature class or layer as follows: 1) In ArcMap, go to File -> Add Data -> Add XY Data 2) Use the Make XY Event Layer tool I didn't quite follow the rest of your question, but if you want a unique route between each pair of points, you can use the RouteName field in the Route's Stops sublayer to define which stops belong to the same route. So, if you have 10 pairs of points, and you want 10 routes, one for each pair, just give each pair a unique RouteName. You can do this automatically using Field Mapping in the Add Locations tool (or Load Locations dialog - it's the same thing) if you have a field in the input data that uniquely identifies each pair of points.
... View more
08-16-2016
11:25 AM
|
0
|
0
|
871
|
|
POST
|
When you add/load your origins and destinations, you can use field mapping to transfer data from your original input points into the Origins and Destinations sublayers of the OD layer. You could transfer your FID values into the Name field, or you could use the Add Field To Analysis Layer tool to add a new field (call it "Orig_FID" or something) and then map your FID into that new field.
... View more
07-31-2016
02:06 PM
|
0
|
0
|
1435
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 04-21-2026 08:39 AM | |
| 1 | 04-15-2026 02:24 PM | |
| 1 | 02-03-2026 11:41 AM | |
| 1 | 03-16-2026 08:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
3 weeks ago
|