Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Transfuser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
heming
Transfuser
Commits
31238bfb
Commit
31238bfb
authored
3 years ago
by
Aditya Prakash
Browse files
Options
Downloads
Patches
Plain Diff
download CARLA data
parent
8836f1f7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
download_data.sh
+29
-0
29 additions, 0 deletions
download_data.sh
with
29 additions
and
0 deletions
download_data.sh
0 → 100755
+
29
−
0
View file @
31238bfb
#!/usr/bin/env bash
mkdir
data
cd
data
# Download license file
wget https://s3.eu-central-1.amazonaws.com/avg-projects/transfuser/data/LICENSE.txt
# Download clear_weather data
mkdir
clear_weather_data
cd
clear_weather_data
for
town
in
Town01 Town02 Town03 Town04 Town05 Town06 Town07 Town10
do
wget https://s3.eu-central-1.amazonaws.com/avg-projects/transfuser/data/clear_weather_data/
${
town
}
.zip
unzip
-q
${
town
}
.zip
rm
${
town
}
.zip
done
cd
..
# Download 14_weathers data
mkdir
14_weathers_data
cd
14_weathers_data
for
town
in
Town01 Town02 Town03 Town04 Town05 Town06 Town07 Town10
do
wget https://s3.eu-central-1.amazonaws.com/avg-projects/transfuser/data/14_weathers_data/
${
town
}
.zip
unzip
-q
${
town
}
.zip
rm
${
town
}
.zip
done
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment