-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathdemo_cell_csapr.sh
executable file
·65 lines (53 loc) · 2.61 KB
/
demo_cell_csapr.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/bash
###############################################################################################
# This script demonstrates running cell tracking on CACTI CSAPR2 data
# To run this demo script:
# 1. Modify the dir_demo to a directory on your computer to download the sample data
# 2. Run the script: bash demo_cell_csapr.sh
#
# By default the demo config uses 4 processors for parallel processing,
# assuming most computers have at least 4 CPU cores.
# If your computer has more than 4 processors, you may modify 'nprocesses'
# in config_csapr500m_example.yml to reduce the run time.
###############################################################################################
# Specify directory for the demo data
dir_demo='/Users/feng045/data/demo/cell_radar/csapr/'
# Example config file name
config_demo='config_cell_demo.yml'
# Demo input data directory
dir_input=${dir_demo}'input/'
# Create the demo directory
mkdir -p ${dir_input}
# Download sample ARM CSAPR reflectivity data:
echo 'Downloading demo input data ...'
wget https://portal.nersc.gov/project/m1867/PyFLEXTRKR/sample_data/radar/taranis_corcsapr2.tar.gz -O ${dir_input}/taranis_corcsapr2.tar.gz
# Extract intput data
echo 'Extracting demo input data ...'
tar -xvzf ${dir_input}taranis_corcsapr2.tar.gz -C ${dir_input}
# Remove downloaded tar file
rm -fv ${dir_input}taranis_corcsapr2.tar.gz
# Add '\' to each '/' in directory names
dir_input1=$(echo ${dir_input} | sed 's_/_\\/_g')
dir_demo1=$(echo ${dir_demo} | sed 's_/_\\/_g')
# Replace input directory names in example config file
sed 's/INPUT_DIR/'${dir_input1}'/g;s/TRACK_DIR/'${dir_demo1}'/g' config_csapr500m_example.yml > ${config_demo}
echo 'Created new config file: '${config_demo}
# Activate PyFLEXTRKR conda environment
echo 'Activating PyFLEXTRKR environment ...'
conda activate flextrkr
# Run tracking
echo 'Running PyFLEXTRKR ...'
python ../runscripts/run_celltracking.py ${config_demo}
echo 'Tracking is done.'
# Make quicklook plots
echo 'Making quicklook plots ...'
quicklook_dir=${dir_demo}'/quicklooks_trackpaths/'
python ../Analysis/plot_subset_cell_tracks_demo.py -s '2019-01-25T12' -e '2019-01-26T00' \
-c ${config_demo} --radar_lat -32.12641 --radar_lon -64.72837 -p 1 --figsize 8 7 --output ${quicklook_dir}
echo 'View quicklook plots here: '${quicklook_dir}
# Make animation using ffmpeg
echo 'Making animations from quicklook plots ...'
ffmpeg -framerate 2 -pattern_type glob -i ${quicklook_dir}'*.png' -c:v libx264 -r 10 -crf 20 -pix_fmt yuv420p \
-y ${quicklook_dir}quicklook_animation.mp4
echo 'View animation here: '${quicklook_dir}quicklook_animation.mp4
echo 'Demo completed!'