|
POST
|
Your network configuration looks correct. The null attribute parameters are also correct. You can read about the supported parameters for the Public Transit evaluator here: https://pro.arcgis.com/en/pro-app/latest/help/analysis/networks/public-transit-evaluator.htm#ESRI_SECTION1_9FF9489173C741DD95472F21B5AD8374 My guess is you still have some connectivity problem. Try using the Explore Network tool to click on one of the LineVariantElements features. The map will show which other network features are connected to it. Check to see whether the StopConnectors are correctly connected. Also click on a StopConnectors feature and make sure it connects to the street. If that still doesn't work, either contact Support or post your data here and I can take a look. (You can also send me a private message if you want to share the data privately, but be sure to leave a comment here since Esri Community's private message system doesn't give me an e-mail notification.)
... View more
11-09-2023
09:30 PM
|
0
|
0
|
5387
|
|
POST
|
The next thing to check is that your network analysis is using a day of week or date and a time of day. If you don't use a time, the analysis will never use the transit lines. Make sure you're using a date and time when transit service is available. Some specific details on that are in the tutorial's final section: https://pro.arcgis.com/en/pro-app/latest/help/analysis/networks/create-and-use-a-network-dataset-with-public-transit-data.htm#ESRI_SECTION1_0547477F1C834EEAB22B368F6F4AB5B9 If that isn't the issue, the next thing I would check is that the impedance attribute and travel mode are configured correctly and that you're using the right travel mode when solving your layer.
... View more
11-08-2023
06:10 PM
|
0
|
0
|
5399
|
|
POST
|
The Time Cost and Distance Cost travel mode properties are primarily used by the Vehicle Routing Problem solver. Some other solvers include them as an accumulated attribute by default, but in general they don't really do much.
... View more
10-19-2023
06:58 AM
|
1
|
0
|
3762
|
|
POST
|
If your walking and cycling paths are sufficiently comprehensive and well connected, then you can use only this in your network. The traveler needs to be able to walk to and from transit stops and their origin/destination as well as walk between stops to make transfers. So if your walking network can do that, it's all you need. Problems could occur if your walking network is missing connections between places (maybe where someone has to walk along a street because there's no specific pedestrian infrastructure included) or where it's poorly connected (like if you have sidewalks looping all the way around a block but don't have a crosswalk modeled to connect from one block to the next block). When the analysis is solved, the distance reported is fairly meaningless. The LineVariantElements feature class is generated with arbitrary straight-line connections between connected stops, and the Shape_Length values of these features is not physically meaningful. The reported travel time is the only meaningful value.
... View more
10-05-2023
07:10 AM
|
0
|
0
|
1574
|
|
POST
|
A couple of other questions: I can't see from your code snippet where you save the resulting Service Area polygons. Are you using the export() method? This might be a dumb question, but are you sure you're saving the result of each iteration to a separate feature class and looking at the right one in the map? What happens if you run the script with just one travel mode (the one for bus that you're having trouble with)? Are you sure the points you're using as inputs are locating in the desired place on the network? Are you using some network location settings in Pro that you're not using in your script? Are you sure it's really working as intended within the Pro UI? Can you paste a screenshot of your layer's analysis settings and your network dataset configuration (connectivity policies, travel mode and attribute configuration)?
... View more
09-29-2023
07:27 AM
|
0
|
0
|
1670
|
|
POST
|
It looks to me like this code should work. However, I can't see where you created the Service Area object (that's probably not the issue). What results are you seeing that tell you the travel mode isn't working correctly? Can you give some more details or post some screenshots?
... View more
09-28-2023
05:10 PM
|
0
|
0
|
1681
|
|
POST
|
Make sure the streets have a vertex at the location where the bus stop intersects them. Without the vertex, the Override connectivity policy won't work. By the way, we have a formal recommended way to create a network dataset that supports public transit routing, which is described in this tutorial: https://pro.arcgis.com/en/pro-app/latest/help/analysis/networks/create-and-use-a-network-dataset-with-public-transit-data.htm
... View more
09-27-2023
06:16 AM
|
0
|
2
|
1754
|
|
POST
|
I still can't reproduce the problem using the data and script you sent me via private message. I responded to your private message with more details and further suggestions, so please have a look.
... View more
09-26-2023
11:32 AM
|
0
|
0
|
896
|
|
POST
|
Thanks. For the network, I was mostly interested to understand whether it was a mobile gdb or a licensed, compressed fgdb (sounds like it is not) since those can have different behavior in some circumstances. One further question (sorry!): How are you running this script when you experience the slowdown? Are you running it in standalone Python, in Pro via a custom script tool or python toolbox tool, in a notebook, or some other way? I wonder if the problem only occurs when run in a certain way, indicating an issue with memory clean-up in whatever the running mechanism is.
... View more
09-26-2023
10:14 AM
|
0
|
2
|
3647
|
|
POST
|
So far not reproducible for me. Could you please tell me the following information: What version of ArcGIS Pro are you using? What type of network dataset are you using? (file geodatabase, mobile geodatabase/MMPK, Streetmap Premium (what type and vintage), etc.)
... View more
09-26-2023
09:58 AM
|
0
|
4
|
3652
|
|
POST
|
Okay, sorry to hear it wasn't that simple. Before I spend a ton of time running your code, have you tried running it without creating those output spatial dataframes at all? Because dataframes are stored in memory, my suspicion is that the problem is something to do with that. If removing that piece eliminates the problem, we can exclude Network Analyst as the culprit and focus on the spatial dataframes to see why they are eating/leaking memory.
... View more
09-26-2023
07:29 AM
|
0
|
7
|
3662
|
|
IDEA
|
Thanks for the information @wayfaringrob. Sorry, one further clarification question to make sure we understand the problem completely: When you say "scaling", does your student have their Windows display setting set to something above 100%? Or if not, could you explain in more detail what you mean by "scaling" so we can attempt to reproduce the student's exact situation? Thanks.
... View more
09-25-2023
02:35 PM
|
0
|
0
|
2703
|
|
POST
|
I just tried to reproduce the progressive slowdown using tutorial data and a very simplified workflow, and the slowdown didn't happen. So, let's try to dig into your more complex workflow a little deeper. First thought: Is it possible that your machine is progressively running out of memory as you store more and more stuff in that results dictionary? I don't know how large your store_assignments_df spatial dataframe is with each iteration, but if it's really big, maybe your machine is just using more and more memory. If you run your code but don't return and store the results, does it still progressively slow down? If that doesn't help, would it be possible for you to share your data and full tool code with me along with specific instructions on how to run it? We can definitely try to debug the problem on our end, but since my attempt at a simplified script didn't reproduce the problem, I think we'd need to have all your stuff. If you don't want to share it publicly, you can send me a private message through Esri Community (and please leave a comment here letting me know you did so, since the Esri Community platform doesn't send notifications when you get a private message).
... View more
09-25-2023
02:22 PM
|
0
|
10
|
3684
|
|
POST
|
If the main thing causing you a problem here is the labeling and symbology, you might be able to resolve the problem by saving a layer file with the symbology you want and calling the Apply Symbology From Layer tool to apply this symbology to the .lyr files saved by your tool.
... View more
09-22-2023
11:38 AM
|
0
|
0
|
1795
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Tuesday | |
| 1 | Tuesday | |
| 1 | 06-12-2026 01:53 PM | |
| 1 | 04-21-2026 08:39 AM | |
| 1 | 04-15-2026 02:24 PM |
| Online Status |
Offline
|
| Date Last Visited |
13 hours ago
|