|
POST
|
"Walking" assumes you're walking. In the background, I believe it's simply restricting streets based on an attribute in the street feature class that indicates that pedestrians are forbidden. I agree that the naming convention is a bit confusing. For a pedestrian analysis, "Walking" should be checked. To eliminate one-ways, just turn the one-way restriction off (assuming there is one). If one-way is unchecked, one-way values will be ignored. If you solve your analysis using a distance measure (such as Miles or Meters), the solution will be optimized based on network distance rather than travel time. The travel time impedance attributes are generally designed for cars, and they use the traffic data and speed limits. However, the distance-based impedance attributes are ignoring all that and only using distance in the optimization, so it can be used for a pedestrian analysis. The main limitation you will run into with your network will be pedestrian paths or cut-throughs that aren't included. Pedestrians can walk on paths, across parks, through buildings, etc. However, the basic street network with a distance impedance attribute will give you something reasonable to work with. You could certainly make your own network dataset designed for pedestrian analysis if you have the data.
... View more
10-16-2013
06:11 PM
|
0
|
0
|
1702
|
|
POST
|
First of all, you do not need to calculate 77 different OD matrices. Just load the forest stands as origins and all the mills as destinations. You will get one OD Line from each origin to each destination. That said, depending on how many forest stands there are, it could be a very large OD matrix. If you start running out of memory on Solve, you'll want to chunk up the problem into smaller pieces, similar to what you're already doing. You can do the following to get the output Lines table so you can use it in other tools like AddJoin: # ODLayer is the NA Layer object returned by getOutput(0)
ODLayer = arcpy.MakeODCostMatrixLayer_na(inNetworkDataset, outNALayer_OD,
impedanceAttribute, BufferSize, "",
accumulate, uturns, restrictions,
hierarchy, "", PathShape).getOutput(0)
# To refer to the OD sublayers, get the sublayer names.
if ArcVersion in ["10.1", "10.2"]:
naSubLayerNames = arcpy.na.GetNAClassNames(ODLayer)
elif ArcVersion == "10.0":
naSubLayerNames = dict((sublayer.datasetName, sublayer.name) for sublayer in arcpy.mapping.ListLayers(ODLayer)[1:])
points = naSubLayerNames["Origins"]
stops = naSubLayerNames["Destinations"]
lines = naSubLayerNames["ODLines"]
# Make layer objects for each sublayer
linesSubLayer = arcpy.mapping.ListLayers(ODLayer, lines)[0]
pointsSubLayer = arcpy.mapping.ListLayers(ODLayer, points)[0]
stopsSubLayer = arcpy.mapping.ListLayers(ODLayer, stops)[0]
# ... use sublayers in other tools Use the Origin_ID and Destination_ID fields in the output Lines to join back to the ObjectID field of Origins and Destinations
... View more
10-08-2013
07:31 AM
|
0
|
0
|
905
|
|
POST
|
I think an easier thing for you to do would be to change the impedance attribute to distance and solve the service areas for distance instead of time. If you want to make a 10-minute service area, and you assume that pedestrians travel at 3mph, make a 0.5-mile service area. No need to change any evaluators or worry about historical traffic or fallback times. "Walking" is a restriction attribute that simply prohibits travel on certain roads that are not appropriate for pedestrians.
... View more
09-19-2013
07:04 AM
|
0
|
0
|
1702
|
|
POST
|
Hola, Ernesto. Sus paradas estan en los elementos de red restringida. En las propriedades, debe hacer clic en "Excluir elementos de red restringida." Ver cuadro. (Lo siento, mi español no es bueno.) ~Melinda
... View more
08-26-2013
07:23 AM
|
0
|
0
|
1374
|
|
POST
|
This might be a dumb question, but did you click the "Solve" button after you changed the Service Area properties? Nothing will happen if you just change the properties. You have to click Solve on the Network Analyst toolbar.
... View more
08-09-2013
07:25 AM
|
0
|
0
|
1473
|
|
POST
|
If you already have the routes on a street network (ie, you used the Network Analyst Route tool on a network dataset), you can use the Copy Traversed Source Features tool to create a feature class of the actual street segments that were traversed by the routes. You can count the number of times each segment was traversed to get the volume of cyclists on the street. You can also do some clever things with the dissolve tool to sum existing fields in the routes and such.
... View more
08-08-2013
07:15 AM
|
0
|
0
|
2183
|
|
POST
|
Hello Michelle. Were you ever able to create your multimodal network dataset with transfer penalties? I just wanted to let you know about a new prototype tool from Esri's Network Analyst team which allows you to add GTFS public transit data directly to a network dataset. You can use this network dataset with the Network Analyst tools to run time-aware analyses that incorporate the transit schedules. It is possible using this method to incur transfer penalties. You can download the toolset and instructions here: http://www.arcgis.com/home/item.html?id=0fa52a75d9ba4abcad6b88bb6285fae1 Please do not hesitate to contact me at [email protected] with questions or comments about this toolset.
... View more
07-19-2013
03:48 PM
|
0
|
0
|
752
|
|
POST
|
Hello Angela and Renan. Were you ever able to complete your transit studies? I just wanted to let you know about a new prototype tool from Esri's Network Analyst team which allows you to add GTFS public transit data directly to a network dataset. You can use this network dataset with the Network Analyst tools to run time-aware analyses that incorporate the transit schedules. You can download the toolset and instructions here: http://www.arcgis.com/home/item.html?id=0fa52a75d9ba4abcad6b88bb6285fae1 Please do not hesitate to contact me at [email protected] with questions or comments about this toolset.
... View more
07-19-2013
03:39 PM
|
0
|
0
|
1130
|
|
POST
|
Hello Cameron. Were you ever able to create your multimodal network? It might be too late to be relevant now, but I just wanted to let you know about a new prototype tool from Esri's Network Analyst team which allows you to add GTFS public transit data directly to a network dataset. You can use this network dataset with the Network Analyst tools to run time-aware analyses that incorporate the transit schedules. You can download the toolset and instructions here: http://www.arcgis.com/home/item.html?id=0fa52a75d9ba4abcad6b88bb6285fae1 Please do not hesitate to contact me at [email protected] with questions or comments about this toolset.
... View more
07-19-2013
03:38 PM
|
0
|
0
|
1024
|
|
POST
|
Hello Jeremy. Were you ever able to create your multimodal network dataset? I just wanted to let you know about a new prototype tool from Esri's Network Analyst team which allows you to add GTFS public transit data directly to a network dataset. You can use this network dataset with the Network Analyst tools to run time-aware analyses that incorporate the transit schedules. You can download the toolset and instructions here: http://www.arcgis.com/home/item.html?id=0fa52a75d9ba4abcad6b88bb6285fae1 Please do not hesitate to contact me at [email protected] with questions or comments about this toolset.
... View more
07-19-2013
03:35 PM
|
0
|
0
|
1573
|
|
POST
|
Hello everyone. I just wanted to let you know about a new prototype tool from Esri's Network Analyst team which allows you to add GTFS public transit data directly to a network dataset. You can use this network dataset with the Network Analyst tools to run time-aware analyses that incorporate the transit schedules. You can download the toolset and instructions here: http://www.arcgis.com/home/item.html?id=0fa52a75d9ba4abcad6b88bb6285fae1 Please do not hesitate to contact me at [email protected] with questions or comments about this toolset.
... View more
07-19-2013
10:43 AM
|
0
|
0
|
1958
|
|
POST
|
Hello everyone. I just wanted to let you know about a new prototype tool from Esri's Network Analyst team which allows you to add GTFS public transit data directly to a network dataset. You can use this network dataset with the Network Analyst tools to run time-aware analyses that incorporate the transit schedules. You can download the toolset and instructions here: http://www.arcgis.com/home/item.html?id=0fa52a75d9ba4abcad6b88bb6285fae1 Please do not hesitate to contact me at [email protected] with questions or comments about this toolset.
... View more
07-19-2013
10:43 AM
|
0
|
0
|
1526
|
|
POST
|
Hello Vita. It might be too late for your study, but I just wanted to let you know about a new prototype tool from Esri's Network Analyst team which allows you to add GTFS public transit data directly to a network dataset. You can use this network dataset with the Network Analyst tools to run time-aware analyses that incorporate the transit schedules. You could use this tool to run a service area analysis around your parks for many times of day to compare. Unfortunately, we cannot currently limit the number of allowed transfers, so it's not a perfect solution yet. You can download the toolset and instructions here: http://www.arcgis.com/home/item.html?id=0fa52a75d9ba4abcad6b88bb6285fae1 Please do not hesitate to contact me at [email protected] with questions or comments about this toolset.
... View more
07-19-2013
10:42 AM
|
0
|
0
|
1696
|
|
POST
|
Hi Chris. This might be too late to be helpful to you, but I think this tool might be helpful for your analysis: http://www.arcgis.com/home/item.html?id=42e57c5ff9a0497f831f4fced087b9b0. It allows you to calculate buffers around your transit stops and weight them by the frequency of transit trips available or by the maximum wait time between any two trips. Also, if you are considering making a multimodal network, there is a new prototype tool from Esri's Network Analyst team which allows you to add GTFS public transit data directly to a network dataset. You can use this network dataset with the Network Analyst tools to run time-aware analyses that incorporate the transit schedules. You can download the toolset and instructions here: http://www.arcgis.com/home/item.html?id=0fa52a75d9ba4abcad6b88bb6285fae1 Please do not hesitate to contact me at [email protected] with questions or comments about this toolset.
... View more
07-19-2013
10:40 AM
|
0
|
0
|
1841
|
|
POST
|
Hello everyone. I just wanted to let you know about a new prototype tool from Esri's Network Analyst team which allows you to add GTFS public transit data directly to a network dataset. You can use this network dataset with the Network Analyst tools to run time-aware analyses that incorporate the transit schedules. You can download the toolset and instructions here: http://www.arcgis.com/home/item.html?id=0fa52a75d9ba4abcad6b88bb6285fae1 Please do not hesitate to contact me at [email protected] with questions or comments about this toolset.
... View more
07-19-2013
10:36 AM
|
0
|
0
|
3997
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 06-12-2026 01:53 PM | |
| 1 | 04-21-2026 08:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|