-
Notifications
You must be signed in to change notification settings - Fork 62
Description
I'm unable to create a pandana network object after processing OSM and GTFS data with urbanaccess. I'm using this osm network and this gtfs feed. If I use either of those data sources directly, I can sucessfuly insantiate a pandana.Network.
Once I try to create a multimodal network with 'integrate_network`, it completes successfully:
Loaded UrbanAccess network components comprised of:
Transit: 2,415 nodes and 8,385 edges;
OSM: 486,514 nodes and 742,113 edges
Connector edges between the OSM and transit network nodes successfully completed. Took 1.16 seconds
Edge and node tables formatted for Pandana with integer node ids: id_int, to_int, and from_int. Took 3.15 seconds
Network edge and node network integration completed successfully resulting in a total of 488,929 nodes and 755,328 edges:
Transit: 2,415 nodes 8,385 edges;
OSM: 486,514 nodes 742,113 edges; and
OSM/Transit connector: 4,830 edges.
<urbanaccess.network.urbanaccess_network at 0x7fb8d761df50>
however, if I try to create a pdna.Network from the integrated data, I get
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-35-2640ece2a378> in <module>
4 urbanaccess_net.net_edges["to_int"],
5 urbanaccess_net.net_edges[["weight"]],
----> 6 twoway=False)
~/anaconda3/envs/healthacc/lib/python3.7/site-packages/pandana/network.py in __init__(self, node_x, node_y, edge_from, edge_to, edge_weights, twoway)
101 .astype('double')
102 .values,
--> 103 twoway)
104
105 self._twoway = twoway
src/cyaccess.pyx in pandana.cyaccess.cyaccess.__cinit__()
ValueError: Buffer dtype mismatch, expected 'long' but got 'double'
looking closer at the ua_network.net_edges object, I can see that the two columns to_int and from_int are actually floats, though looking at the code I cant see why that would be the case. I'm guessing its the underlying reason I cant build a network since the docs seem to indicate pandana needs integers in the from/to cols (though it also seems to work ok with strings if I try and build a network exclusively from the GTFS data) but was curious if you had any insight.
I could post the whole notebook if its useful
- Operating system:
macos - Python version:
3.7 - UrbanAccess version:
0.2.0 (albeit with a small local fix for theas_matrixissue)