2
votes
2answers
60 views

How to create network dataset for network assistant using ArcPy?

Is it possible to create a network dataset with arcpy to be used with the network assistant? In the documentation I found the Build Network and Dissolve Network functions, but it looks like both ...
5
votes
1answer
229 views

How to automatically create all possible polyline routes connecting many point locations around a polygon obstruction?

Lets say I have 30 ports on the west of an island, and 30 on the east, and need to calculate all possible shipping distances between each and every port, with the routes having to steer around the ...
7
votes
5answers
231 views

How to Split Roads at intersection for Network Analysis?

I have a file geodatabase Feature Class representing the roads of a city. The Roads are not split at Intersections. ArcGIS needs roads to be split at the intersections, otherwise it assumes that the ...
3
votes
1answer
89 views

Ist there a way to calculate a Service Area from the Network Analyst in ArcGIS for each feature in a feature class?

I am trying to implement a python script that creates in a first step a Network Dataset and that in a second step gets a point feature class for which the tool should create for each feature in the ...
0
votes
0answers
34 views

Creating transfer edges for a multimodal network

I am trying to create transfer edges for a network and what I have done is used the near tool to get XY coordinates for the closest rail segment, and repeated for the closest road segment to each of ...
0
votes
1answer
246 views

How to generate all possible routes between two points?

I have a network dataset in ArcGIS and I need to generate all possible (not only the shortest one) routes between two given points (A, B). Is it possible to do it with the Network Analyst? Or with any ...
2
votes
0answers
91 views

A problem with ArcGIS network analyst making paths and roads work together

Working in Arc GIS 10 .0 service pack 5, network analyst extension, Productivity Suite 2.1 service pack 7, on Windows 7. I am trying to get the Ordnance survey ITN urban paths layer to work with OS ...
5
votes
1answer
75 views

How to store route names of a stop belonging to multiple routes

I've been reading the ArcGIS help files on route analysis to gather more information on what attributes are stored with Stops. Maybe I've stared at the screen too long, but I cannot seem to understand ...
3
votes
0answers
324 views

Performing a Multicriteria Analysis Using Distance Along a Road Network

There is the possibility that I will be working on a project which will look at thousands of properties in a region and measure their accessibility to different services (schools, parks, hospitals, ...
2
votes
1answer
144 views

Create an optimized point layer derived from a road layer so that the driving distance between each point is x

Consider a classic state-wide or country-wide roadway network. I want to create a point layer, where each point is on the roadway network. This point layer will have each point separated by its ...
0
votes
0answers
98 views

ArcObjects - How to move a point to the nearest allowed location

I want to compute a route programmatically. I have a network dataset and a set of points. Some of these points are placed on locations that are restricted. Some of them are restricted because of the ...
3
votes
1answer
228 views

Update Arcpy version?

This is probably the answer to my previous question. The version of arcpy that I am using does not include GetNAClassNames naClasses = arcpy.na.GetNAClassNames(serviceAreaLayer) ...
15
votes
1answer
195 views

Are there any standards or common practices for performing a network analysis for emergency response?

I am working on a project using Network Analyst to determine official emergency response zones for fire departments. The shape of each zone will be determined by the network (at least 1 department ...
0
votes
2answers
128 views

Closest Facility/Delete Identical Tool Help

I am having a bit of a time figuring out a work around for a problem I have. Essentially, I ran a Closest Facility operation on a set of about 200 points. Each point is an entrance to a building, and ...
2
votes
2answers
235 views

How to improve performance on OD Cost Matrix for 200.000 origins and 1000 destinations

First of all this is my first question on this site :) And I am really happy to be within the community. I have no programmer's background therefore, I try to avoid use python scripting, however If I ...
1
vote
1answer
185 views

ArcGIS Routing on Android with Network Analyst module

I am currently developing an Android App for navigation purposes. It is based on the ArcGIS Android API. I have an ArcGIS server (with network analyst module) with all the needed data running. At the ...
1
vote
1answer
331 views

Forcing a route in Network Analyst

I'm fairly new into the public transportation universe and now I have to create route analysis. I have thousands of routes to create, so that leave out the manual option. I obviously have origins and ...
1
vote
1answer
274 views

Merging OD Cost Distance Matrix result (ArcGIS 10 Network Analyst)

I've created small python script that calculates OD matrix between certain locations, i.e. not between each origin and destination but for each origin I have a set of destinations that I want to ...
1
vote
1answer
160 views

empty network dataset creation

I'm trying to create a new network dataset via ArcCatalog in a SDE database. I've imported a street featureclass into my dataset, go to create the network dataset with all the default options. After I ...
2
votes
0answers
116 views

Network Analyst directions window options

I have created a vehicle route problem with multiple route zones with one depot in each zone. Each zone has a pickup route that delivers to the depot in the zone. Some addresses have special ...
1
vote
2answers
439 views

How to get All Paired Shortest Paths in ArcGIS network analysis at once

I have some difficulties on network analysis,I want to run shortest path algorithm, I don't know how to use ArcGIS to reveal the shortest route between the appointed points on the map, and if it's ...
1
vote
1answer
260 views

ArcGIS Network Analyst tool for Android?

I am trying to include the Network Analyst tool into an Android application. I have published the tool on ArcGIS Server and I integrate its URL address to use it. On the same time, I import a ...
6
votes
1answer
390 views

Drive time analysis using Network Analyst with ArcInfo 9.1

What is the most common SETTING for the Layer Properties when creating time-travel polygons? I am in the process of creating 4, 5, 6 minute polygons using Network Analyst. Every time I generate ...
4
votes
1answer
397 views

Correct network analysis settings needed for shortest route problem

Ok 1st sorry my English is not very good. What i want to ask is why the route analysis takes long path to reach the point when i click at solve button even though I can see a shorter path with my ...
2
votes
1answer
281 views

no route detected in network

why this warning box appear when i click at solve button in network analyst toolbar ? - No route from location "Graphic Pick 46" to location "Graphic Pick 61". Error: No solution found.
3
votes
0answers
373 views

IDatasetContainer2 CreateDataset method fails after upgrading to ArcObjects 10 [closed]

I have a Network Analyst routine that worked for 9.3 and does not work with 10. I was closely following the example at: ...