motional / nuplan-devkit

The devkit of the nuPlan dataset.
https://www.nuplan.org
Other
673 stars 129 forks source link

how could I download the dataset with a command line in Linux? How could I get specific url for downloading? #249

Closed yaqlee closed 1 year ago

yaqlee commented 1 year ago

Could I use wget or python scripts to download all the dataset to specific file folder?

mh0797 commented 1 year ago

Hi @yaqlee, Yes you can. But it’s a bit hacky as the actual download link is only generated once you click on the button. To get the download link for a Linux machine, I used the Edge Browser on a windows machine and did the following. Go to the website, log in and find the download section below. Then click on the download button for the file you want to get. You can immediately stop the download and right click on the progress that’s being displayed. There you find the option to copy the download link.

Then you can do wget -O Filename.zip „download link“

Important Note: Use the -O flag and quotations around the actual link, as the link contains special characters and you probably don’t want this long name as a filename. Mind the capitalization, if the -O flag!

while this solution is more of a workaround, i hope it helps!