You can download only the real dataset from the command line using wget or curl directly. Copy and execute the code block below:
# Using wget
mkdir -p FlyAwareV2-R && cd FlyAwareV2-R
wget -c -O FlyAwareV2-R.zip "https://medialab.dei.unipd.it/paper_data/FlyAwareV2/web/static/datasets/real/FlyAwareV2-R.zip"
# OR using curl
mkdir -p FlyAwareV2-R && cd FlyAwareV2-R
curl -C - -L -o FlyAwareV2-R.zip "https://medialab.dei.unipd.it/paper_data/FlyAwareV2/web/static/datasets/real/FlyAwareV2-R.zip"
We provide the dw_flyawarev2_synth.sh script to download all synthetic dataset parts (town zips + metadata) with resume support.
Follow these steps:
# 1) Download the script using wget
wget -c -O dw_flyawarev2_synth.sh "https://medialab.dei.unipd.it/paper_data/FlyAwareV2/web/scripts/dw_flyawarev2_synth.sh"
# OR using curl
curl -C - -L -o dw_flyawarev2_synth.sh "https://medialab.dei.unipd.it/paper_data/FlyAwareV2/web/scripts/dw_flyawarev2_synth.sh"
# 2) Make the script executable
chmod +x dw_flyawarev2_synth.sh
# 3) Run the script with options
./dw_flyawarev2_synth.sh # uses defaults (prefers wget, downloads to ./FlyAwareV2-S)
./dw_flyawarev2_synth.sh --tool curl # force curl
./dw_flyawarev2_synth.sh --outdir /data/FlyAwareV2-S # custom output directory
./dw_flyawarev2_synth.sh --tool wget --outdir ./synth # combine options
We provide the dw_flyawarev2.sh script to download the entire dataset (real zip + all synthetic parts) with resume support.
Follow these steps:
# 1) Download the script using wget
wget -c -O dw_flyawarev2.sh "https://medialab.dei.unipd.it/paper_data/FlyAwareV2/web/scripts/dw_flyawarev2.sh"
# OR using curl
curl -C - -L -o dw_flyawarev2.sh "https://medialab.dei.unipd.it/paper_data/FlyAwareV2/web/scripts/dw_flyawarev2.sh"
# 2) Make the script executable
chmod +x dw_flyawarev2.sh
# 3) Run the script with options
./dw_flyawarev2.sh # uses defaults (prefers wget, downloads to ./FlyAwareV2)
./dw_flyawarev2.sh --tool curl # force curl
./dw_flyawarev2.sh --outdir /data/FlyAwareV2 # custom output directory
./dw_flyawarev2.sh --tool wget --outdir ./datasets # combine options
Note: All scripts support resume (-c for wget, -C - for curl) to handle interrupted downloads. Use --help flag on any script to see all available options.