-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefine.py
66 lines (58 loc) · 1.33 KB
/
define.py
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
66
#!/usr/bin/env python3
# define.py
# Hunter Barndt
# Purpose: Define global variables used throughout script tools
# ADD YOUR LOCAL DIR PATH TO THE DATA, THIS SCRIPT ASSUMES DATA ISN'T STORED IN THE LOCAL DIR
current_machine = 'whbarndt-local'
directory_preambles = {
'whbarndt-local' : 'D:/UAF/PHYS Capstone/',
}
### Date deines ###
num_months = 12
num_days = 31
gima_download_start_year = 2019
gima_download_end_year = 2022
reeves_start_year = 2010 # 2009 technically but unusable data
reeves_end_year = 2022
num_reeves_years = reeves_end_year - reeves_start_year
swugat_start_year = 2023
swugat_end_year = 2023
processing_start_year = 2010
processing_end_year = 2022
num_processing_years = processing_end_year - processing_start_year
### SWUG ATLAS DEFINES ###
swugat_website = "http://swugatlas.gi.alaska.edu"
swugat_sites_file_labels = [
"pkr",
"erc",
"sol",
"ili"
]
swugat_sites_dir_labels = [
"poker",
"eagle_river",
"soldatna",
]
swugat_site = "eagle_river"
### GIMA DEFINES ###
gima_website = 'http://magnetometer.rcs.alaska.edu'
gima_sites = [
"trapper"
]
selected_gima_site = 'trapper'
''' All gima sites
gima_sites = [
"poker",
"kaktovik",
"arctic",
"bettles",
"toolik",
"eagle",
"trapper",
"kenai",
"cigo",
"fortyukon",
"gakona",
"hlms",
"homer",
]'''