-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdictionary_module.py
36 lines (31 loc) · 1.12 KB
/
dictionary_module.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
#Dictionary of criteria taken from S-44
EO = {
"AD": "Areas where there is strict minimum underkeel clearance and manoeuvrability criteria.",
"FD": "Cubic features > 0.5 m",
"FS": "200%",
"BC": "200%"
}
SO = {
"AD": "Areas where underkeel clearance is critical.",
"FD": "Cubic features > 1 m",
"FS": "100%",
"BC": "100%"
}
OA = {
"AD": "Areas where underkeel clearance is considered not to be critical but features of concern to surface shipping may exist.",
"FD": "Cubic features > 2 m in depths down to 40 m, 10% of depth if beyond 40 m",
"FS": "100%",
"BC": "=<100%"
}
OB = {
"AD": "Areas where underkeel clearance is not considered to be an issue for the type of surface shipping expected to transit the area.",
"FD": "Not Specified",
"FS": "Recommended but not required",
"BC": "5%"
}
OT = {
"AD": "Areas where a general description of the seafloor is considered adequate.",
"FD": "Not Specified",
"FS": "Recommended but not required",
"BC": "5%"
}