|
POST
|
Make sure you're using "Miles" as your impedance attribute. Or, if you want to use a different impedance attribute, make sure you populate the associated Breaks_[impedance] field. They must match.
... View more
04-04-2018
08:07 AM
|
0
|
1
|
967
|
|
POST
|
Hello Suzie. Are you able to share a link or attachment of your GTFS data so I can try to reproduce the problem? And what is the name you're trying to use for your output feature class?
... View more
04-03-2018
12:38 PM
|
0
|
1
|
2045
|
|
POST
|
I'm still trying to understand what your ultimate goal is. So...you want to have printed/text directions and to highlight the maneuvers that are associated with areas requiring some kind of local permits? Do you specifically need this information in the directions text and not on the map or in the map features?
... View more
04-02-2018
12:40 PM
|
0
|
1
|
4212
|
|
POST
|
Are you trying to calculate the mileage of the different street types based on the directions text? If so, here are two alternative, easier/better ways to calculate your mileage. 1. Use the Copy Traversed Source Features tool after solving your route. This tool will output a feature class of the network edges (the individual street segments) that were traversed by the route. From that information, you can calculate the number of miles of each type of street that was used. 2. You can create some additional cost attributes on your network dataset and then "accumulate" these attributes along with solving the route. So, suppose you have two road classes, State and Local. Create two cost attributes, "StateMiles" and "LocalMiles". For "StateMiles", configure the evaluators such that the attribute gives you the road length for all state roads and 0 for all other roads. Do a similar thing for "LocalMiles". Then, when you solve your route, use the Accumulate Attributes section to accumulate StateMiles and LocalMiles. When the route solve is done, the attribute table should show you Total_StateMiles and Total_LocalMiles, which is the total number of miles of each of those road classes that was traversed. Please ask further questions about this if you are uncertain of how to create cost attributes and configure evaluators.
... View more
04-02-2018
08:33 AM
|
0
|
3
|
4212
|
|
POST
|
Update: This tool is available in ArcMap as of the 10.6 release.
... View more
03-30-2018
03:53 PM
|
0
|
0
|
1480
|
|
BLOG
|
Frequent, nearby public transit service isn’t useful if that service doesn’t take you valuable destinations, like your job, your school, the grocery store, the doctor’s office, the airport, etc. We need to understand where the transit service goes. If we can do this for an entire city, we can find out whether some areas have better access to important destinations than others, and we can use this information to understand other trends and to correct disparities. Check out this post on the Esri blog to learn more about how to calculate transit accessibility in ArcGIS: Mapping transit accessibility to jobs | ArcGIS Blog
... View more
03-29-2018
03:32 PM
|
0
|
0
|
801
|
|
BLOG
|
The GTFS shapes.txt file contains the actual geographic paths taken by your transit vehicles (buses, trains, etc.). The shapes.txt file is optional, but it’s important to have it so that routing apps can display the transit data nicely in a map and show an accurate representation of where your routes are. Check out this post on the Esri blog to find out how to create one for your system: How to make shapes.txt file for GTFS dataset with ArcGIS | ArcGIS Blog
... View more
03-29-2018
03:30 PM
|
0
|
0
|
1434
|
|
BLOG
|
Not all transit access is created equal. Some areas of town enjoy more frequent transit service than others, and this may vary by time of day or day of the week. This, in turn, might impact the area’s (or point of interest’s) desirability or be correlated to the area’s socioeconomic characteristics. Check out this post on the Esri blog to see a sample analysis and find out how you can incorporate frequency of transit service into your analysis: transit service frequency mapping in ArcGIS | ArcGIS Blog
... View more
03-29-2018
03:27 PM
|
0
|
0
|
776
|
|
BLOG
|
Public transit (like buses and subways) connects people with their jobs, schools, healthcare, recreation, and more. However, typical fixed-route transit systems serve only the people and areas within a short distance of transit stops. Many maps inadvertently over-estimate the area and people served by the transit system. Check out this post on the Esri blog to find out why that is and what can be done about it: Who does my public transit system serve? | ArcGIS Blog
... View more
03-29-2018
03:25 PM
|
0
|
0
|
606
|
|
BLOG
|
Public transit (like buses and subways) is a vital service that connects people with their jobs, schools, healthcare, recreation, and more. Consequently, if you’re studying access to healthcare, assessing an economic development project, trying to choose a new site for your business, or performing any other GIS analysis in an urban environment, you can take your analysis a step further by incorporating public transit data. Check out this post on the Esri blog for more information about tools you can use for this! Tools for public transit analysis ArcGIS Desktop | ArcGIS Blog
... View more
03-29-2018
03:22 PM
|
0
|
0
|
678
|
|
POST
|
The only way to support schedule-based public transit in Network Analyst is to download the Add GTFS to a Network Dataset tool: Add GTFS to a Network Dataset | GTFS in ArcGIS To accomplish what you're trying to do, you would have to use this tool to create a network dataset that includes the transit schedules, then publish your service based off this network dataset. You also have to be able to install the "transit evaluator" on the server machine. There are some instructions within the tool's user's guide that talk about that. Note that you can get the closest facility and the travel time, but you cannot get directions that are sensible for public transit.
... View more
03-28-2018
01:35 PM
|
1
|
0
|
913
|
|
POST
|
Unfortunately, per-facility breaks are not supported with the Generate Service Areas tool. If you need this functionality for your script, you'll need to use the Make Service Area Layer -> Add Locations -> Solve workflow and use field mapping in Add Locations to use the per-facility breaks fields as Jay suggests above.
... View more
03-16-2018
09:22 AM
|
0
|
0
|
1744
|
|
POST
|
Yes, generally when working with elevation fields, you should have two separate fields. One represents the elevation value at the "From" end of the line, and the other represents the elevation value at the "To" end of the line. This makes it possible to transition between levels, like a ramp. Note that if you are editing street data in ArcGIS Pro instead of ArcMap, the elevation fields are managed for you in a way that ensures connectivity.
... View more
03-16-2018
08:25 AM
|
2
|
0
|
2017
|
|
POST
|
Hello Majid. The accumulate attributes option is not currently available from the UI in Pro, but you CAN use it. The easiest way is to use the Make OD Cost Matrix Analysis Layer tool to create your OD cost matrix layer rather than using the Network Analysis drop-down on the Analysis tab. This tool has an option for accumulating attributes (note that this option is not available if you're using ArcGIS Online or a portal service as your network data source). You can also modify an existing layer's accumulate attributes using the solver properties object in the python window, like this: doc = arcpy.mp.ArcGISProject('current') mapObj = doc.listMaps()[0] layerObj = mapObj.listLayers('OD Cost Matrix')[0] props = arcpy.na.GetSolverProperties(layerObj) props.accumulators = [<list of attributes you want to accumulate>]
... View more
03-15-2018
08:18 AM
|
2
|
1
|
1865
|
|
POST
|
It's weird that they didn't draw correctly in the exported feature class. That should have worked. Make sure you clear any selections before exporting. Other suggestions: Try doing this in ArcGIS Pro? Can you clarify whether you are using your own network dataset and the Network Analyst ribbon or whether you're using the ready-to-use services with ArcGIS Online?
... View more
03-14-2018
09:47 AM
|
0
|
2
|
2134
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 4 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 |
4 weeks ago
|