You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Develop an algorithm to return a distance, rather than time, matrix between all stops in a GTFS feed. Primary advantage is the ability to assess the overall "speed" of a network, through examining dependence of time on distance.
This should use shape data where such is provided, but it's generally not, so can use ˋosmdataˋ anywhere shape data is not provided. The routine will have to construct a bunch of sub-matrices for each modal type. These modes are given in the "route_type" field of the "routes" table, and currently include:
tram
subway
rail
bus
ferry
cable tram
aerial lift, suspended cable car
funicular
trolley bus
monorail
These modalities will have to be matched to OSM keys/values, and corresponding data extracted for each feed. Distances within each mode can then be calculated using the resultant modal network. Distances between modes will require matching stops for destination modes on to stops for origin modes, and calculating corresponding distances within the origin-mode network. All of these pieces will then have to be inserted into the resultant distance matrix.
The text was updated successfully, but these errors were encountered:
Develop an algorithm to return a distance, rather than time, matrix between all stops in a GTFS feed. Primary advantage is the ability to assess the overall "speed" of a network, through examining dependence of time on distance.
This should use shape data where such is provided, but it's generally not, so can use ˋosmdataˋ anywhere shape data is not provided. The routine will have to construct a bunch of sub-matrices for each modal type. These modes are given in the "route_type" field of the "routes" table, and currently include:
These modalities will have to be matched to OSM keys/values, and corresponding data extracted for each feed. Distances within each mode can then be calculated using the resultant modal network. Distances between modes will require matching stops for destination modes on to stops for origin modes, and calculating corresponding distances within the origin-mode network. All of these pieces will then have to be inserted into the resultant distance matrix.
The text was updated successfully, but these errors were encountered: