This script is used for downloading and extracting the complete NuScenes dataset. Please use it responsibly and solely for educational and research purposes.
- Please register and log in at https://www.nuscenes.org/nuscenes to obtain access permissions.
- Use the browser's developer tools (F12) to monitor network requests. Click on any download link in the Full Dataset section and find the Bearer Token from the headers of the monitored download link.
- Insert the Bearer Token into the
bearer_token
variable in thenuscenes_download.py
script. - Set the
output_dir
andregion
variables. - Run the
download_nuscenes.py
script.
# replace with your API url and Bearer Token
bearer_token = 'eyJraWQiOiJaUk14Z2gwZHg0UnRGVGR1VlhpZm9pa2U0bVJGaVlKN1lm'
output_dir = "/path/to/save"
region = 'asia' # 'us' or 'asia'