nuplan-devkit
nuplan-devkit copied to clipboard
run_simulation.py wants to create .maplocks in write protected dataset
Describe the bug
When running python $NUPLAN_DEVKIT_ROOT/nuplan/planning/script/run_simulation.py the script gpkg_mapsdb.py in line 84 is creating a file .maplocks in the map directory of the dataset.
However, the official documentation says, that the dataset directory can be read-only:
~/nuplan/dataset - The dataset folder. Can be read-only.
~/nuplan/exp - The experiment and cache folder. Must have read and write access.
Since my dataset directory is read-only, this leads to an error. Commenting line 84 out prevents the error.