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
Copy file name to clipboardExpand all lines: README.md
+4-12Lines changed: 4 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,16 +12,16 @@ Path4GMNS is an open-source, cross-platform, lightweight, and fast Python path e
12
12
4. evaluating multimodal accessibility.
13
13
14
14
## Installation
15
-
Path4GMNS has been published on [PyPI](https://pypi.org/project/path4gmns/0.7.0/), and can be installed using
15
+
Path4GMNS has been published on [PyPI](https://pypi.org/project/path4gmns/0.7.1/), and can be installed using
16
16
```
17
17
$ pip install path4gmns
18
18
```
19
-
If you need a specific version of Path4GMNS, say, 0.7.0,
19
+
If you need a specific version of Path4GMNS, say, 0.7.1,
20
20
```
21
-
$ pip install path4gmns==0.7.0
21
+
$ pip install path4gmns==0.7.1
22
22
```
23
23
24
-
v0.7.0 comes with new functionalities, improved performance, and potential issue fix. All previous releases shall be deprecated for any purposes.
24
+
v0.7.1 comes with potential issue fixes. All previous releases shall be deprecated for any purposes.
25
25
26
26
### Dependency
27
27
The Python modules are written in **Python 3.x**, which is the minimum requirement to explore the most of Path4GMNS. Some of its functions require further run-time support, which we will go through along with the corresponding use cases in the following section.
print('\npath finding results can be found in agent.csv')
126
124
```
127
125
128
126
Starting from v0.7.0a1, Path4GMNS supports loading columns/paths from existing files (generated from either the Python module or DTALite) and continue the column-generation procedure from where you left. Please **skip the assignment stage** and go directly to column pool optimization by setting **assignment_num = 0**.
print(f'processing time of accessibility evaluation: {time()-st:.2f} s')
251
-
print('accessibility matrices can be found in accessibility.csv '
252
-
'and accessibility_aggregated.csv')
253
247
```
254
248
255
249
Two formats of accessibility will be outputed: accessibility between each OD pair in terms of free flow travel time (accessibility.csv) and aggregated accessibility as to the number of accessible zones from each zone for each transportation mode specified in settings.yml given a budget time (up to 240 minutes) (accessibility_aggregated.csv). The following example is to evaluate accessibility only under the default mode (i.e. mode auto or agent type passenger).
print(f'processing time of accessibility evaluation: {time()-st:.2f} s')
273
-
print('accessibility matrices can be found in accessibility.csv '
274
-
'and accessibility_aggregated.csv')
275
267
```
276
268
277
269
You can also get the accessible nodes and links within a time budget given a mode. Similar to the accessibility evalution, the selected mode must come from settings.yml.
0 commit comments