-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding quality of life improvements, map area querying, fixing nuPlan…
… lane ID format, and the ability to cache the data index.
- Loading branch information
1 parent
748b8b1
commit c1a9499
Showing
27 changed files
with
801 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
# @profile | ||
def main(): | ||
dataset = UnifiedDataset( | ||
# TODO([email protected]) Remove lyft from default examples | ||
desired_data=["nusc_mini", "lyft_sample", "nuplan_mini"], | ||
rebuild_maps=True, | ||
data_dirs={ # Remember to change this to match your filesystem! | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ classifiers = [ | |
"License :: OSI Approved :: Apache Software License", | ||
] | ||
name = "trajdata" | ||
version = "1.3.3" | ||
version = "1.4.0" | ||
authors = [{ name = "Boris Ivanovic", email = "[email protected]" }] | ||
description = "A unified interface to many trajectory forecasting datasets." | ||
readme = "README.md" | ||
|
@@ -33,7 +33,8 @@ dependencies = [ | |
"geopandas>=0.13.2", | ||
"protobuf==3.19.4", | ||
"scipy>=1.9.0", | ||
"opencv-python>=4.5.0" | ||
"opencv-python>=4.5.0", | ||
"shapely>=2.0.0", | ||
] | ||
|
||
[project.optional-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.