1 function [fire_name,save_name,prefix,perim] = fire_choice(fire_choice)
3 if ~exist('fire_choice','var')
4 fire_choice = input_num('which fire? Patch: [0], Camp: [1], Cougar: [3] other: [4] Cal_2020 [5]',0,0);
6 %cycle = input_num('Which cycle? ',0,1)
8 fire_name = 'Camp fire';
10 prefix='../campTIFs/';
11 perim = '../PERIMs/camp_perims/';
12 elseif fire_choice == 0
13 fire_name = 'Patch Springs fire';
16 perim = '../PERIMs/patch_perims/';
17 elseif fire_choice == 4
18 fire_name = 'CA fire';
19 save_name = 'CA_2020';
21 perim = '../PERIMs/creek/'
22 elseif fire_choice == 5
23 fire_name = 'CA fire';
24 save_name = 'CA_2020';
26 perim = '../PERIMs/august/'
28 fire_name = 'Cougar Creek fire';
30 prefix = '../cougarTIFs/';
31 perim = '../PERIMs/cougar_perims/';