Download data from source. If you have the link to the dataset and working from a linux machine, create a folder for the dataset, navigate to it, and then run the following in the terminal: wget <link_to_dataset>
For each new dataset or dataset groups,
- Add a new slider UI function
*_sliders
for that dataset inmodules/slider_UI.R
- Add a new data handling function
data_process_*
indata_fun.R
- For map data, add
map_fun_*
inmap_fun.R
- Add option to switch to that dataset in
switch_map
inmap_fun.R
.
Then in data_modules.R
. Add call to these functions in the appropriate places.
- Add the new dataset as an option in
dat_choices
in the moduledatselect_mod_ui
- Add call to
*_sliders
inoutput$ui_placeholder
in the moduledatselect_mod_server
. - Add call to
data_process_
infiltered_data
in the moduledatselect_mod_server
. - Add call to
map_fun_*
at ... (work in progress)