File tree 3 files changed +26
-8
lines changed
3 files changed +26
-8
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,7 @@ catkin build
57
57
58
58
The task is to control a simulated quadrotor to fly through obstacle dense environments.
59
59
The environment contains both static and dynamic obstacles.
60
- You have to download the obstacle confiurations from [ here] ( ) and extract the file under /flightmare/flightpy/configs/vision.
61
- Afterwards, you can change specific which difficulty level and environment you want to load for testing your algorithm.
60
+ You can specifiy which difficulty level and environment you want to load for testing your algorithm.
62
61
The yaml configuration file is located in (/flightmare/flightpy/configs/vision/config.yaml.
63
62
64
63
``` yaml
Original file line number Diff line number Diff line change @@ -20,15 +20,25 @@ sudo apt install -y --no-install-recommends build-essential cmake libzmqpp-dev l
20
20
echo " Ignoring unused Flightmare folders!"
21
21
touch flightmare/flightros/CATKIN_IGNORE
22
22
23
- echo " Downloading Trajectories..."
24
- wget " https://download.ifi.uzh.ch/rpg/Flightmare/trajectories.zip" --directory-prefix=$project_path /flightmare/flightpy
23
+ # echo "Downloading Trajectories..."
24
+ # wget "https://download.ifi.uzh.ch/rpg/Flightmare/trajectories.zip" --directory-prefix=$project_path/flightmare/flightpy/configs/vision
25
+
26
+ echo " Unziping Trajectories... (this might take a while)"
27
+ unzip -o $project_path /flightmare/flightpy/configs/vision/trajectories.zip -d $project_path /flightmare/flightpy/configs/vision/ | awk ' BEGIN {ORS=" "} {if(NR%50==0)print "."}'
28
+
29
+ echo " Removing Trajectories zip file"
30
+ rm $project_path /flightmare/flightpy/configs/vision/trajectories.zip
25
31
26
32
echo " Downloading Flightmare Unity standalone..."
27
33
wget " https://download.ifi.uzh.ch/rpg/Flightmare/RPG_Flightmare.zip" --directory-prefix=$project_path /flightmare/flightrender
28
34
29
- echo " Unziping Flightmare Unity Standalone"
30
- unzip -o $project_path /flightmare/flightrender/RPG_Flightmare.zip -d $project_path /flightmare/flightrender
35
+ echo " Unziping Flightmare Unity Standalone... (this might take a while) "
36
+ unzip -o $project_path /flightmare/flightrender/RPG_Flightmare.zip -d $project_path /flightmare/flightrender | awk ' BEGIN {ORS=" "} {if(NR%10==0)print "."} '
31
37
38
+ echo " Removing Flightmare Unity Standalone zip file"
39
+ rm $project_path /flightmare/flightrender/RPG_Flightmare.zip
40
+
41
+ #
32
42
echo " export FLIGHTMARE_PATH=$project_path /flightmare" >> ~ /.bashrc
33
43
34
44
#
Original file line number Diff line number Diff line change @@ -21,11 +21,20 @@ sudo pip install uniplot
21
21
echo " Ignoring unused Flightmare folders!"
22
22
touch flightmare/flightros/CATKIN_IGNORE
23
23
24
+ # echo "Downloading Trajectories..."
25
+ wget " https://download.ifi.uzh.ch/rpg/Flightmare/trajectories.zip" --directory-prefix=$project_path /flightmare/flightpy/configs/vision
26
+
27
+ echo " Unziping Trajectories... (this might take a while)"
28
+ unzip -o $project_path /flightmare/flightpy/configs/vision/trajectories.zip -d $project_path /flightmare/flightpy/configs/vision/ | awk ' BEGIN {ORS=" "} {if(NR%50==0)print "."}'
29
+
30
+ echo " Removing Trajectories zip file"
31
+ rm $project_path /flightmare/flightpy/configs/vision/trajectories.zip
32
+
24
33
echo " Downloading Flightmare Unity standalone..."
25
34
wget " https://download.ifi.uzh.ch/rpg/Flightmare/RPG_Flightmare.zip" --directory-prefix=$project_path /flightmare/flightrender
26
35
27
- echo " Unziping Flightmare Unity Standalone"
28
- unzip -o $project_path /flightmare/flightrender/RPG_Flightmare.zip -d $project_path /flightmare/flightrender
36
+ echo " Unziping Flightmare Unity Standalone... (this might take a while) "
37
+ unzip -o $project_path /flightmare/flightrender/RPG_Flightmare.zip -d $project_path /flightmare/flightrender | awk ' BEGIN {ORS=" "} {if(NR%10==0)print "."} '
29
38
30
39
echo " Removing Flightmare Unity Standalone zip file"
31
40
rm $project_path /flightmare/flightrender/RPG_Flightmare.zip
You can’t perform that action at this time.
0 commit comments