Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Overture Maps Importer #501

Open
wants to merge 8 commits into
base: overture_maps_importer
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,5 @@ build/
coverage.xml

#### End snippet
tests/data/overture/theme=transportation/type=connector/transportation_data_connector.parquet
tests/data/overture/theme=transportation/type=segment/transportation_data_segment.parquet
13 changes: 13 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"python.testing.pytestArgs": [],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"julia.environmentPath": "c:\\Users\\penny\\git\\Aequilibrae",
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"test*.py"
]
}
72 changes: 72 additions & 0 deletions aequilibrae/parameters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,78 @@ network:
mode_filter:
pedestrian: 'no'
unknown_tags: true
ovm:
all_link_types:
- bridleway
- cycleway
- driveway
- footway
- livingStreet
- motorway
- parkingAisle
- pedestrian
- primary
- residential
- secondary
- steps
- tertiary
- track
- trunk
- unclassified
- unknown
modes:
bicycle:
link_types:
- primary
- secondary
- tertiary
- livingStreet
- parkingAisle
- residential
- cycleway
- pedestrian
- track
- unclassified
mode_filter:
bicycle: 'no'
unknown_tags: true
car:
link_types:
- motorway
- trunk
- primary
- secondary
- tertiary
- unclassified
- residential
- livingStreet
- parkingAisle
mode_filter:
motor_vehicle: 'no'
unknown_tags: true
transit:
link_types:
- motorway
- trunk
- primary
- secondary
- tertiary
- unclassified
- residential
- livingStreet
unknown_tags: true
walk:
link_types:
- cycleway
- footway
- steps
- pedestrian
- track
- bridleway
- unclassified
mode_filter:
pedestrian: 'no'
unknown_tags: true
gmns:
critical_dist: 2
node:
Expand Down
Loading
Loading