colregs 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +194 -26
- package/PROVENANCE.md +45 -12
- package/README.md +212 -19
- package/data/applicability.json +1189 -189
- package/data/deprecated-identifiers.json +7 -0
- package/data/facts.json +543 -112
- package/data/geometry.json +33 -33
- package/data/images.json +51 -25
- package/data/lights.json +35 -35
- package/data/rules.json +787 -3
- package/docs/adr/0001-name-and-jurisdiction-model.md +119 -1
- package/docs/adr/0003-language-as-a-dimension.md +220 -0
- package/docs/adr/0004-licence-layering.md +78 -0
- package/docs/adr/0005-rule-categories-and-the-situation-record.md +323 -0
- package/docs/adr/0006-json-schema-and-identifier-diff.md +95 -0
- package/docs/conventions.md +27 -0
- package/docs/gates.json +84 -0
- package/docs/identifiers.md +435 -0
- package/docs/requirements.md +1121 -22
- package/docs/verification/2026-08-30-q6-q8.md +278 -0
- package/docs/verification/2026-09-05-rule27f-rule28-anchor-scenarios.md +330 -0
- package/fixtures/applicability-fixtures.json +254 -227
- package/fixtures/situation-fixtures.json +3603 -0
- package/package.json +16 -4
- package/schema/applicability-fixtures.schema.json +47 -0
- package/schema/applicability.schema.json +401 -0
- package/schema/deprecated-identifiers.schema.json +29 -0
- package/schema/facts.schema.json +793 -0
- package/schema/geometry.schema.json +239 -0
- package/schema/images.schema.json +53 -0
- package/schema/lights.schema.json +131 -0
- package/schema/rules.schema.json +50 -0
- package/schema/situation-fixtures.schema.json +325 -0
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
{
|
|
6
6
|
"name": "sailing yacht 11.6 m under sail",
|
|
7
7
|
"facts": {
|
|
8
|
-
"propulsion": "sail",
|
|
9
|
-
"activity": "none",
|
|
10
|
-
"position": "underway",
|
|
11
|
-
"length_m": 11.6
|
|
8
|
+
"fact:propulsion": "propulsion:sail",
|
|
9
|
+
"fact:activity": "activity:none",
|
|
10
|
+
"fact:position": "position:underway",
|
|
11
|
+
"fact:length_m": 11.6
|
|
12
12
|
},
|
|
13
13
|
"expect": [
|
|
14
14
|
"25a",
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
{
|
|
20
20
|
"name": "same yacht motoring",
|
|
21
21
|
"facts": {
|
|
22
|
-
"propulsion": "power",
|
|
23
|
-
"activity": "none",
|
|
24
|
-
"position": "underway",
|
|
25
|
-
"length_m": 11.6
|
|
22
|
+
"fact:propulsion": "propulsion:power",
|
|
23
|
+
"fact:activity": "activity:none",
|
|
24
|
+
"fact:position": "position:underway",
|
|
25
|
+
"fact:length_m": 11.6
|
|
26
26
|
},
|
|
27
27
|
"expect": [
|
|
28
28
|
"23a1",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
{
|
|
35
35
|
"name": "power vessel 15 m underway",
|
|
36
36
|
"facts": {
|
|
37
|
-
"propulsion": "power",
|
|
38
|
-
"activity": "none",
|
|
39
|
-
"position": "underway",
|
|
40
|
-
"length_m": 15
|
|
37
|
+
"fact:propulsion": "propulsion:power",
|
|
38
|
+
"fact:activity": "activity:none",
|
|
39
|
+
"fact:position": "position:underway",
|
|
40
|
+
"fact:length_m": 15
|
|
41
41
|
},
|
|
42
42
|
"expect": [
|
|
43
43
|
"23a1",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
{
|
|
49
49
|
"name": "power vessel 55 m underway",
|
|
50
50
|
"facts": {
|
|
51
|
-
"propulsion": "power",
|
|
52
|
-
"activity": "none",
|
|
53
|
-
"position": "underway",
|
|
54
|
-
"length_m": 55
|
|
51
|
+
"fact:propulsion": "propulsion:power",
|
|
52
|
+
"fact:activity": "activity:none",
|
|
53
|
+
"fact:position": "position:underway",
|
|
54
|
+
"fact:length_m": 55
|
|
55
55
|
},
|
|
56
56
|
"expect": [
|
|
57
57
|
"23a1",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
{
|
|
63
63
|
"name": "6 m outboard, max speed 6 kn",
|
|
64
64
|
"facts": {
|
|
65
|
-
"propulsion": "power",
|
|
66
|
-
"activity": "none",
|
|
67
|
-
"position": "underway",
|
|
68
|
-
"length_m": 6,
|
|
69
|
-
"max_speed_kn": 6
|
|
65
|
+
"fact:propulsion": "propulsion:power",
|
|
66
|
+
"fact:activity": "activity:none",
|
|
67
|
+
"fact:position": "position:underway",
|
|
68
|
+
"fact:length_m": 6,
|
|
69
|
+
"fact:max_speed_kn": 6
|
|
70
70
|
},
|
|
71
71
|
"expect": [
|
|
72
72
|
"23a1",
|
|
@@ -79,11 +79,11 @@
|
|
|
79
79
|
{
|
|
80
80
|
"name": "6 m outboard, max speed 20 kn",
|
|
81
81
|
"facts": {
|
|
82
|
-
"propulsion": "power",
|
|
83
|
-
"activity": "none",
|
|
84
|
-
"position": "underway",
|
|
85
|
-
"length_m": 6,
|
|
86
|
-
"max_speed_kn": 20
|
|
82
|
+
"fact:propulsion": "propulsion:power",
|
|
83
|
+
"fact:activity": "activity:none",
|
|
84
|
+
"fact:position": "position:underway",
|
|
85
|
+
"fact:length_m": 6,
|
|
86
|
+
"fact:max_speed_kn": 20
|
|
87
87
|
},
|
|
88
88
|
"expect": [
|
|
89
89
|
"23a1",
|
|
@@ -95,10 +95,10 @@
|
|
|
95
95
|
{
|
|
96
96
|
"name": "dinghy under sail, 3.5 m",
|
|
97
97
|
"facts": {
|
|
98
|
-
"propulsion": "sail",
|
|
99
|
-
"activity": "none",
|
|
100
|
-
"position": "underway",
|
|
101
|
-
"length_m": 3.5
|
|
98
|
+
"fact:propulsion": "propulsion:sail",
|
|
99
|
+
"fact:activity": "activity:none",
|
|
100
|
+
"fact:position": "position:underway",
|
|
101
|
+
"fact:length_m": 3.5
|
|
102
102
|
},
|
|
103
103
|
"expect": [
|
|
104
104
|
"25a",
|
|
@@ -110,10 +110,10 @@
|
|
|
110
110
|
{
|
|
111
111
|
"name": "10 m vessel under oars",
|
|
112
112
|
"facts": {
|
|
113
|
-
"propulsion": "oars",
|
|
114
|
-
"activity": "none",
|
|
115
|
-
"position": "underway",
|
|
116
|
-
"length_m": 10
|
|
113
|
+
"fact:propulsion": "propulsion:oars",
|
|
114
|
+
"fact:activity": "activity:none",
|
|
115
|
+
"fact:position": "position:underway",
|
|
116
|
+
"fact:length_m": 10
|
|
117
117
|
},
|
|
118
118
|
"expect": [
|
|
119
119
|
"25d2"
|
|
@@ -122,11 +122,11 @@
|
|
|
122
122
|
{
|
|
123
123
|
"name": "motoring but drifting in neutral, 11.6 m",
|
|
124
124
|
"facts": {
|
|
125
|
-
"propulsion": "power",
|
|
126
|
-
"activity": "none",
|
|
127
|
-
"position": "underway",
|
|
128
|
-
"making_way": false,
|
|
129
|
-
"length_m": 11.6
|
|
125
|
+
"fact:propulsion": "propulsion:power",
|
|
126
|
+
"fact:activity": "activity:none",
|
|
127
|
+
"fact:position": "position:underway",
|
|
128
|
+
"fact:making_way": false,
|
|
129
|
+
"fact:length_m": 11.6
|
|
130
130
|
},
|
|
131
131
|
"expect": [
|
|
132
132
|
"23a1",
|
|
@@ -138,10 +138,10 @@
|
|
|
138
138
|
{
|
|
139
139
|
"name": "anchored, 11.6 m",
|
|
140
140
|
"facts": {
|
|
141
|
-
"propulsion": "sail",
|
|
142
|
-
"activity": "none",
|
|
143
|
-
"position": "anchored",
|
|
144
|
-
"length_m": 11.6
|
|
141
|
+
"fact:propulsion": "propulsion:sail",
|
|
142
|
+
"fact:activity": "activity:none",
|
|
143
|
+
"fact:position": "position:anchored",
|
|
144
|
+
"fact:length_m": 11.6
|
|
145
145
|
},
|
|
146
146
|
"expect": [
|
|
147
147
|
"30a",
|
|
@@ -152,11 +152,11 @@
|
|
|
152
152
|
{
|
|
153
153
|
"name": "anchored, 6 m, clear of the channel",
|
|
154
154
|
"facts": {
|
|
155
|
-
"propulsion": "power",
|
|
156
|
-
"activity": "none",
|
|
157
|
-
"position": "anchored",
|
|
158
|
-
"length_m": 6,
|
|
159
|
-
"near_channel": false
|
|
155
|
+
"fact:propulsion": "propulsion:power",
|
|
156
|
+
"fact:activity": "activity:none",
|
|
157
|
+
"fact:position": "position:anchored",
|
|
158
|
+
"fact:length_m": 6,
|
|
159
|
+
"fact:near_channel": false
|
|
160
160
|
},
|
|
161
161
|
"expect": [
|
|
162
162
|
"30a",
|
|
@@ -168,10 +168,10 @@
|
|
|
168
168
|
{
|
|
169
169
|
"name": "aground, 15 m",
|
|
170
170
|
"facts": {
|
|
171
|
-
"propulsion": "power",
|
|
172
|
-
"activity": "none",
|
|
173
|
-
"position": "aground",
|
|
174
|
-
"length_m": 15
|
|
171
|
+
"fact:propulsion": "propulsion:power",
|
|
172
|
+
"fact:activity": "activity:none",
|
|
173
|
+
"fact:position": "position:aground",
|
|
174
|
+
"fact:length_m": 15
|
|
175
175
|
},
|
|
176
176
|
"expect": [
|
|
177
177
|
"30d-anchor",
|
|
@@ -181,10 +181,10 @@
|
|
|
181
181
|
{
|
|
182
182
|
"name": "aground, 10 m (30(f) relief from the red lights only, not the anchor lights)",
|
|
183
183
|
"facts": {
|
|
184
|
-
"propulsion": "power",
|
|
185
|
-
"activity": "none",
|
|
186
|
-
"position": "aground",
|
|
187
|
-
"length_m": 10
|
|
184
|
+
"fact:propulsion": "propulsion:power",
|
|
185
|
+
"fact:activity": "activity:none",
|
|
186
|
+
"fact:position": "position:aground",
|
|
187
|
+
"fact:length_m": 10
|
|
188
188
|
},
|
|
189
189
|
"expect": [
|
|
190
190
|
"30d-anchor"
|
|
@@ -193,11 +193,11 @@
|
|
|
193
193
|
{
|
|
194
194
|
"name": "trawler 30 m making way",
|
|
195
195
|
"facts": {
|
|
196
|
-
"propulsion": "power",
|
|
197
|
-
"activity": "trawling",
|
|
198
|
-
"position": "underway",
|
|
199
|
-
"making_way": true,
|
|
200
|
-
"length_m": 30
|
|
196
|
+
"fact:propulsion": "propulsion:power",
|
|
197
|
+
"fact:activity": "activity:trawling",
|
|
198
|
+
"fact:position": "position:underway",
|
|
199
|
+
"fact:making_way": true,
|
|
200
|
+
"fact:length_m": 30
|
|
201
201
|
},
|
|
202
202
|
"expect": [
|
|
203
203
|
"26b-id",
|
|
@@ -208,11 +208,11 @@
|
|
|
208
208
|
{
|
|
209
209
|
"name": "trawler 30 m drifting",
|
|
210
210
|
"facts": {
|
|
211
|
-
"propulsion": "power",
|
|
212
|
-
"activity": "trawling",
|
|
213
|
-
"position": "underway",
|
|
214
|
-
"making_way": false,
|
|
215
|
-
"length_m": 30
|
|
211
|
+
"fact:propulsion": "propulsion:power",
|
|
212
|
+
"fact:activity": "activity:trawling",
|
|
213
|
+
"fact:position": "position:underway",
|
|
214
|
+
"fact:making_way": false,
|
|
215
|
+
"fact:length_m": 30
|
|
216
216
|
},
|
|
217
217
|
"expect": [
|
|
218
218
|
"26b-id",
|
|
@@ -222,12 +222,12 @@
|
|
|
222
222
|
{
|
|
223
223
|
"name": "fishing other than trawling, gear out 200 m, not making way",
|
|
224
224
|
"facts": {
|
|
225
|
-
"propulsion": "power",
|
|
226
|
-
"activity": "fishing",
|
|
227
|
-
"position": "underway",
|
|
228
|
-
"making_way": false,
|
|
229
|
-
"length_m": 12,
|
|
230
|
-
"gear_extent_m": 200
|
|
225
|
+
"fact:propulsion": "propulsion:power",
|
|
226
|
+
"fact:activity": "activity:fishing",
|
|
227
|
+
"fact:position": "position:underway",
|
|
228
|
+
"fact:making_way": false,
|
|
229
|
+
"fact:length_m": 12,
|
|
230
|
+
"fact:gear_extent_m": 200
|
|
231
231
|
},
|
|
232
232
|
"expect": [
|
|
233
233
|
"26c-id",
|
|
@@ -237,11 +237,11 @@
|
|
|
237
237
|
{
|
|
238
238
|
"name": "not under command, making way",
|
|
239
239
|
"facts": {
|
|
240
|
-
"propulsion": "power",
|
|
241
|
-
"activity": "nuc",
|
|
242
|
-
"position": "underway",
|
|
243
|
-
"making_way": true,
|
|
244
|
-
"length_m": 40
|
|
240
|
+
"fact:propulsion": "propulsion:power",
|
|
241
|
+
"fact:activity": "activity:nuc",
|
|
242
|
+
"fact:position": "position:underway",
|
|
243
|
+
"fact:making_way": true,
|
|
244
|
+
"fact:length_m": 40
|
|
245
245
|
},
|
|
246
246
|
"expect": [
|
|
247
247
|
"27a-id",
|
|
@@ -251,11 +251,11 @@
|
|
|
251
251
|
{
|
|
252
252
|
"name": "not under command, drifting",
|
|
253
253
|
"facts": {
|
|
254
|
-
"propulsion": "power",
|
|
255
|
-
"activity": "nuc",
|
|
256
|
-
"position": "underway",
|
|
257
|
-
"making_way": false,
|
|
258
|
-
"length_m": 40
|
|
254
|
+
"fact:propulsion": "propulsion:power",
|
|
255
|
+
"fact:activity": "activity:nuc",
|
|
256
|
+
"fact:position": "position:underway",
|
|
257
|
+
"fact:making_way": false,
|
|
258
|
+
"fact:length_m": 40
|
|
259
259
|
},
|
|
260
260
|
"expect": [
|
|
261
261
|
"27a-id"
|
|
@@ -264,10 +264,10 @@
|
|
|
264
264
|
{
|
|
265
265
|
"name": "restricted in ability to maneuver, at anchor",
|
|
266
266
|
"facts": {
|
|
267
|
-
"propulsion": "power",
|
|
268
|
-
"activity": "ram",
|
|
269
|
-
"position": "anchored",
|
|
270
|
-
"length_m": 60
|
|
267
|
+
"fact:propulsion": "propulsion:power",
|
|
268
|
+
"fact:activity": "activity:ram",
|
|
269
|
+
"fact:position": "position:anchored",
|
|
270
|
+
"fact:length_m": 60
|
|
271
271
|
},
|
|
272
272
|
"expect": [
|
|
273
273
|
"27b-id",
|
|
@@ -279,13 +279,13 @@
|
|
|
279
279
|
{
|
|
280
280
|
"name": "dredger, restricted, obstruction to port, making way",
|
|
281
281
|
"facts": {
|
|
282
|
-
"propulsion": "power",
|
|
283
|
-
"activity": "ram_underwater",
|
|
284
|
-
"position": "underway",
|
|
285
|
-
"making_way": true,
|
|
286
|
-
"length_m": 45,
|
|
287
|
-
"obstruction_exists": true,
|
|
288
|
-
"obstruction_side": "port"
|
|
282
|
+
"fact:propulsion": "propulsion:power",
|
|
283
|
+
"fact:activity": "activity:ram_underwater",
|
|
284
|
+
"fact:position": "position:underway",
|
|
285
|
+
"fact:making_way": true,
|
|
286
|
+
"fact:length_m": 45,
|
|
287
|
+
"fact:obstruction_exists": true,
|
|
288
|
+
"fact:obstruction_side": "obstruction_side:port"
|
|
289
289
|
},
|
|
290
290
|
"expect": [
|
|
291
291
|
"27b-id",
|
|
@@ -296,11 +296,11 @@
|
|
|
296
296
|
{
|
|
297
297
|
"name": "towing astern, tow 150 m",
|
|
298
298
|
"facts": {
|
|
299
|
-
"propulsion": "power",
|
|
300
|
-
"activity": "towing",
|
|
301
|
-
"position": "underway",
|
|
302
|
-
"length_m": 40,
|
|
303
|
-
"tow_length_m": 150
|
|
299
|
+
"fact:propulsion": "propulsion:power",
|
|
300
|
+
"fact:activity": "activity:towing",
|
|
301
|
+
"fact:position": "position:underway",
|
|
302
|
+
"fact:length_m": 40,
|
|
303
|
+
"fact:tow_length_m": 150
|
|
304
304
|
},
|
|
305
305
|
"expect": [
|
|
306
306
|
"24a-m2",
|
|
@@ -310,11 +310,11 @@
|
|
|
310
310
|
{
|
|
311
311
|
"name": "towing astern, tow 300 m",
|
|
312
312
|
"facts": {
|
|
313
|
-
"propulsion": "power",
|
|
314
|
-
"activity": "towing",
|
|
315
|
-
"position": "underway",
|
|
316
|
-
"length_m": 40,
|
|
317
|
-
"tow_length_m": 300
|
|
313
|
+
"fact:propulsion": "propulsion:power",
|
|
314
|
+
"fact:activity": "activity:towing",
|
|
315
|
+
"fact:position": "position:underway",
|
|
316
|
+
"fact:length_m": 40,
|
|
317
|
+
"fact:tow_length_m": 300
|
|
318
318
|
},
|
|
319
319
|
"expect": [
|
|
320
320
|
"24a-m3",
|
|
@@ -324,11 +324,11 @@
|
|
|
324
324
|
{
|
|
325
325
|
"name": "pushing ahead, composite unit",
|
|
326
326
|
"facts": {
|
|
327
|
-
"propulsion": "power",
|
|
328
|
-
"activity": "pushing",
|
|
329
|
-
"position": "underway",
|
|
330
|
-
"length_m": 30,
|
|
331
|
-
"composite_unit": true
|
|
327
|
+
"fact:propulsion": "propulsion:power",
|
|
328
|
+
"fact:activity": "activity:pushing",
|
|
329
|
+
"fact:position": "position:underway",
|
|
330
|
+
"fact:length_m": 30,
|
|
331
|
+
"fact:composite_unit": true
|
|
332
332
|
},
|
|
333
333
|
"expect": [
|
|
334
334
|
"24b"
|
|
@@ -337,11 +337,11 @@
|
|
|
337
337
|
{
|
|
338
338
|
"name": "pushing ahead, not a composite unit",
|
|
339
339
|
"facts": {
|
|
340
|
-
"propulsion": "power",
|
|
341
|
-
"activity": "pushing",
|
|
342
|
-
"position": "underway",
|
|
343
|
-
"length_m": 30,
|
|
344
|
-
"composite_unit": false
|
|
340
|
+
"fact:propulsion": "propulsion:power",
|
|
341
|
+
"fact:activity": "activity:pushing",
|
|
342
|
+
"fact:position": "position:underway",
|
|
343
|
+
"fact:length_m": 30,
|
|
344
|
+
"fact:composite_unit": false
|
|
345
345
|
},
|
|
346
346
|
"expect": [
|
|
347
347
|
"24c"
|
|
@@ -350,22 +350,35 @@
|
|
|
350
350
|
{
|
|
351
351
|
"name": "constrained by draft",
|
|
352
352
|
"facts": {
|
|
353
|
-
"propulsion": "power",
|
|
354
|
-
"activity": "cbd",
|
|
355
|
-
"position": "underway",
|
|
356
|
-
"length_m": 200
|
|
353
|
+
"fact:propulsion": "propulsion:power",
|
|
354
|
+
"fact:activity": "activity:cbd",
|
|
355
|
+
"fact:position": "position:underway",
|
|
356
|
+
"fact:length_m": 200
|
|
357
357
|
},
|
|
358
358
|
"expect": [
|
|
359
359
|
"28"
|
|
360
360
|
]
|
|
361
361
|
},
|
|
362
|
+
{
|
|
363
|
+
"name": "constrained by draft, at anchor (issue #14: Rule 28 is an underway-only signal, so Rule 30 alone)",
|
|
364
|
+
"facts": {
|
|
365
|
+
"fact:propulsion": "propulsion:power",
|
|
366
|
+
"fact:activity": "activity:cbd",
|
|
367
|
+
"fact:position": "position:anchored",
|
|
368
|
+
"fact:length_m": 200
|
|
369
|
+
},
|
|
370
|
+
"expect": [
|
|
371
|
+
"30a",
|
|
372
|
+
"30c"
|
|
373
|
+
]
|
|
374
|
+
},
|
|
362
375
|
{
|
|
363
376
|
"name": "on pilotage duty, underway",
|
|
364
377
|
"facts": {
|
|
365
|
-
"propulsion": "power",
|
|
366
|
-
"activity": "pilot",
|
|
367
|
-
"position": "underway",
|
|
368
|
-
"length_m": 20
|
|
378
|
+
"fact:propulsion": "propulsion:power",
|
|
379
|
+
"fact:activity": "activity:pilot",
|
|
380
|
+
"fact:position": "position:underway",
|
|
381
|
+
"fact:length_m": 20
|
|
369
382
|
},
|
|
370
383
|
"expect": [
|
|
371
384
|
"29a"
|
|
@@ -374,22 +387,36 @@
|
|
|
374
387
|
{
|
|
375
388
|
"name": "mine clearance, underway",
|
|
376
389
|
"facts": {
|
|
377
|
-
"propulsion": "power",
|
|
378
|
-
"activity": "mine",
|
|
379
|
-
"position": "underway",
|
|
380
|
-
"length_m": 60
|
|
390
|
+
"fact:propulsion": "propulsion:power",
|
|
391
|
+
"fact:activity": "activity:mine",
|
|
392
|
+
"fact:position": "position:underway",
|
|
393
|
+
"fact:length_m": 60
|
|
381
394
|
},
|
|
382
395
|
"expect": [
|
|
383
396
|
"27f"
|
|
384
397
|
]
|
|
385
398
|
},
|
|
399
|
+
{
|
|
400
|
+
"name": "mine clearance, at anchor (issue #14: Rule 30 lights imported, not Rule 23)",
|
|
401
|
+
"facts": {
|
|
402
|
+
"fact:propulsion": "propulsion:power",
|
|
403
|
+
"fact:activity": "activity:mine",
|
|
404
|
+
"fact:position": "position:anchored",
|
|
405
|
+
"fact:length_m": 60
|
|
406
|
+
},
|
|
407
|
+
"expect": [
|
|
408
|
+
"27f",
|
|
409
|
+
"30a",
|
|
410
|
+
"30c"
|
|
411
|
+
]
|
|
412
|
+
},
|
|
386
413
|
{
|
|
387
414
|
"name": "diving operations from a small vessel",
|
|
388
415
|
"facts": {
|
|
389
|
-
"propulsion": "power",
|
|
390
|
-
"activity": "diving",
|
|
391
|
-
"position": "underway",
|
|
392
|
-
"length_m": 9
|
|
416
|
+
"fact:propulsion": "propulsion:power",
|
|
417
|
+
"fact:activity": "activity:diving",
|
|
418
|
+
"fact:position": "position:underway",
|
|
419
|
+
"fact:length_m": 9
|
|
393
420
|
},
|
|
394
421
|
"expect": [
|
|
395
422
|
"27e"
|
|
@@ -398,11 +425,11 @@
|
|
|
398
425
|
{
|
|
399
426
|
"name": "air-cushion vessel in non-displacement mode",
|
|
400
427
|
"facts": {
|
|
401
|
-
"propulsion": "power",
|
|
402
|
-
"activity": "none",
|
|
403
|
-
"position": "underway",
|
|
404
|
-
"length_m": 25,
|
|
405
|
-
"non_displacement": true
|
|
428
|
+
"fact:propulsion": "propulsion:power",
|
|
429
|
+
"fact:activity": "activity:none",
|
|
430
|
+
"fact:position": "position:underway",
|
|
431
|
+
"fact:length_m": 25,
|
|
432
|
+
"fact:non_displacement": true
|
|
406
433
|
},
|
|
407
434
|
"expect": [
|
|
408
435
|
"23a1",
|
|
@@ -414,10 +441,10 @@
|
|
|
414
441
|
{
|
|
415
442
|
"name": "23d1 boundary: 11.9 m power vessel underway",
|
|
416
443
|
"facts": {
|
|
417
|
-
"propulsion": "power",
|
|
418
|
-
"activity": "none",
|
|
419
|
-
"position": "underway",
|
|
420
|
-
"length_m": 11.9
|
|
444
|
+
"fact:propulsion": "propulsion:power",
|
|
445
|
+
"fact:activity": "activity:none",
|
|
446
|
+
"fact:position": "position:underway",
|
|
447
|
+
"fact:length_m": 11.9
|
|
421
448
|
},
|
|
422
449
|
"expect": [
|
|
423
450
|
"23a1",
|
|
@@ -429,10 +456,10 @@
|
|
|
429
456
|
{
|
|
430
457
|
"name": "23d1 boundary: 12.0 m power vessel underway",
|
|
431
458
|
"facts": {
|
|
432
|
-
"propulsion": "power",
|
|
433
|
-
"activity": "none",
|
|
434
|
-
"position": "underway",
|
|
435
|
-
"length_m": 12.0
|
|
459
|
+
"fact:propulsion": "propulsion:power",
|
|
460
|
+
"fact:activity": "activity:none",
|
|
461
|
+
"fact:position": "position:underway",
|
|
462
|
+
"fact:length_m": 12.0
|
|
436
463
|
},
|
|
437
464
|
"expect": [
|
|
438
465
|
"23a1",
|
|
@@ -443,11 +470,11 @@
|
|
|
443
470
|
{
|
|
444
471
|
"name": "23d2 length boundary: 6.9 m power vessel, max speed 7 kn",
|
|
445
472
|
"facts": {
|
|
446
|
-
"propulsion": "power",
|
|
447
|
-
"activity": "none",
|
|
448
|
-
"position": "underway",
|
|
449
|
-
"length_m": 6.9,
|
|
450
|
-
"max_speed_kn": 7
|
|
473
|
+
"fact:propulsion": "propulsion:power",
|
|
474
|
+
"fact:activity": "activity:none",
|
|
475
|
+
"fact:position": "position:underway",
|
|
476
|
+
"fact:length_m": 6.9,
|
|
477
|
+
"fact:max_speed_kn": 7
|
|
451
478
|
},
|
|
452
479
|
"expect": [
|
|
453
480
|
"23a1",
|
|
@@ -460,11 +487,11 @@
|
|
|
460
487
|
{
|
|
461
488
|
"name": "23d2 length boundary: 7.0 m power vessel, max speed 7 kn",
|
|
462
489
|
"facts": {
|
|
463
|
-
"propulsion": "power",
|
|
464
|
-
"activity": "none",
|
|
465
|
-
"position": "underway",
|
|
466
|
-
"length_m": 7.0,
|
|
467
|
-
"max_speed_kn": 7
|
|
490
|
+
"fact:propulsion": "propulsion:power",
|
|
491
|
+
"fact:activity": "activity:none",
|
|
492
|
+
"fact:position": "position:underway",
|
|
493
|
+
"fact:length_m": 7.0,
|
|
494
|
+
"fact:max_speed_kn": 7
|
|
468
495
|
},
|
|
469
496
|
"expect": [
|
|
470
497
|
"23a1",
|
|
@@ -476,11 +503,11 @@
|
|
|
476
503
|
{
|
|
477
504
|
"name": "23d2 speed boundary: 6.9 m power vessel, max speed 7.0 kn",
|
|
478
505
|
"facts": {
|
|
479
|
-
"propulsion": "power",
|
|
480
|
-
"activity": "none",
|
|
481
|
-
"position": "underway",
|
|
482
|
-
"length_m": 6.9,
|
|
483
|
-
"max_speed_kn": 7.0
|
|
506
|
+
"fact:propulsion": "propulsion:power",
|
|
507
|
+
"fact:activity": "activity:none",
|
|
508
|
+
"fact:position": "position:underway",
|
|
509
|
+
"fact:length_m": 6.9,
|
|
510
|
+
"fact:max_speed_kn": 7.0
|
|
484
511
|
},
|
|
485
512
|
"expect": [
|
|
486
513
|
"23a1",
|
|
@@ -493,11 +520,11 @@
|
|
|
493
520
|
{
|
|
494
521
|
"name": "23d2 speed boundary: 6.9 m power vessel, max speed 7.1 kn",
|
|
495
522
|
"facts": {
|
|
496
|
-
"propulsion": "power",
|
|
497
|
-
"activity": "none",
|
|
498
|
-
"position": "underway",
|
|
499
|
-
"length_m": 6.9,
|
|
500
|
-
"max_speed_kn": 7.1
|
|
523
|
+
"fact:propulsion": "propulsion:power",
|
|
524
|
+
"fact:activity": "activity:none",
|
|
525
|
+
"fact:position": "position:underway",
|
|
526
|
+
"fact:length_m": 6.9,
|
|
527
|
+
"fact:max_speed_kn": 7.1
|
|
501
528
|
},
|
|
502
529
|
"expect": [
|
|
503
530
|
"23a1",
|
|
@@ -509,10 +536,10 @@
|
|
|
509
536
|
{
|
|
510
537
|
"name": "25b boundary: 19.9 m sailing vessel underway",
|
|
511
538
|
"facts": {
|
|
512
|
-
"propulsion": "sail",
|
|
513
|
-
"activity": "none",
|
|
514
|
-
"position": "underway",
|
|
515
|
-
"length_m": 19.9
|
|
539
|
+
"fact:propulsion": "propulsion:sail",
|
|
540
|
+
"fact:activity": "activity:none",
|
|
541
|
+
"fact:position": "position:underway",
|
|
542
|
+
"fact:length_m": 19.9
|
|
516
543
|
},
|
|
517
544
|
"expect": [
|
|
518
545
|
"25a",
|
|
@@ -523,10 +550,10 @@
|
|
|
523
550
|
{
|
|
524
551
|
"name": "25b boundary: 20.0 m sailing vessel underway",
|
|
525
552
|
"facts": {
|
|
526
|
-
"propulsion": "sail",
|
|
527
|
-
"activity": "none",
|
|
528
|
-
"position": "underway",
|
|
529
|
-
"length_m": 20.0
|
|
553
|
+
"fact:propulsion": "propulsion:sail",
|
|
554
|
+
"fact:activity": "activity:none",
|
|
555
|
+
"fact:position": "position:underway",
|
|
556
|
+
"fact:length_m": 20.0
|
|
530
557
|
},
|
|
531
558
|
"expect": [
|
|
532
559
|
"25a",
|
|
@@ -536,10 +563,10 @@
|
|
|
536
563
|
{
|
|
537
564
|
"name": "25d1 boundary: 6.9 m sailing vessel underway",
|
|
538
565
|
"facts": {
|
|
539
|
-
"propulsion": "sail",
|
|
540
|
-
"activity": "none",
|
|
541
|
-
"position": "underway",
|
|
542
|
-
"length_m": 6.9
|
|
566
|
+
"fact:propulsion": "propulsion:sail",
|
|
567
|
+
"fact:activity": "activity:none",
|
|
568
|
+
"fact:position": "position:underway",
|
|
569
|
+
"fact:length_m": 6.9
|
|
543
570
|
},
|
|
544
571
|
"expect": [
|
|
545
572
|
"25a",
|
|
@@ -551,10 +578,10 @@
|
|
|
551
578
|
{
|
|
552
579
|
"name": "25d1 boundary: 7.0 m sailing vessel underway",
|
|
553
580
|
"facts": {
|
|
554
|
-
"propulsion": "sail",
|
|
555
|
-
"activity": "none",
|
|
556
|
-
"position": "underway",
|
|
557
|
-
"length_m": 7.0
|
|
581
|
+
"fact:propulsion": "propulsion:sail",
|
|
582
|
+
"fact:activity": "activity:none",
|
|
583
|
+
"fact:position": "position:underway",
|
|
584
|
+
"fact:length_m": 7.0
|
|
558
585
|
},
|
|
559
586
|
"expect": [
|
|
560
587
|
"25a",
|
|
@@ -565,8 +592,8 @@
|
|
|
565
592
|
{
|
|
566
593
|
"name": "30b boundary: anchored, 49.9 m",
|
|
567
594
|
"facts": {
|
|
568
|
-
"position": "anchored",
|
|
569
|
-
"length_m": 49.9
|
|
595
|
+
"fact:position": "position:anchored",
|
|
596
|
+
"fact:length_m": 49.9
|
|
570
597
|
},
|
|
571
598
|
"expect": [
|
|
572
599
|
"30a",
|
|
@@ -577,8 +604,8 @@
|
|
|
577
604
|
{
|
|
578
605
|
"name": "30b boundary: anchored, 50.0 m",
|
|
579
606
|
"facts": {
|
|
580
|
-
"position": "anchored",
|
|
581
|
-
"length_m": 50.0
|
|
607
|
+
"fact:position": "position:anchored",
|
|
608
|
+
"fact:length_m": 50.0
|
|
582
609
|
},
|
|
583
610
|
"expect": [
|
|
584
611
|
"30a",
|
|
@@ -588,8 +615,8 @@
|
|
|
588
615
|
{
|
|
589
616
|
"name": "30d boundary: aground, 11.9 m",
|
|
590
617
|
"facts": {
|
|
591
|
-
"position": "aground",
|
|
592
|
-
"length_m": 11.9
|
|
618
|
+
"fact:position": "position:aground",
|
|
619
|
+
"fact:length_m": 11.9
|
|
593
620
|
},
|
|
594
621
|
"expect": [
|
|
595
622
|
"30d-anchor"
|
|
@@ -598,8 +625,8 @@
|
|
|
598
625
|
{
|
|
599
626
|
"name": "30d boundary: aground, 12.0 m",
|
|
600
627
|
"facts": {
|
|
601
|
-
"position": "aground",
|
|
602
|
-
"length_m": 12.0
|
|
628
|
+
"fact:position": "position:aground",
|
|
629
|
+
"fact:length_m": 12.0
|
|
603
630
|
},
|
|
604
631
|
"expect": [
|
|
605
632
|
"30d-anchor",
|
|
@@ -609,9 +636,9 @@
|
|
|
609
636
|
{
|
|
610
637
|
"name": "30e boundary: anchored, clear of channel, 6.9 m",
|
|
611
638
|
"facts": {
|
|
612
|
-
"position": "anchored",
|
|
613
|
-
"near_channel": false,
|
|
614
|
-
"length_m": 6.9
|
|
639
|
+
"fact:position": "position:anchored",
|
|
640
|
+
"fact:near_channel": false,
|
|
641
|
+
"fact:length_m": 6.9
|
|
615
642
|
},
|
|
616
643
|
"expect": [
|
|
617
644
|
"30a",
|
|
@@ -623,9 +650,9 @@
|
|
|
623
650
|
{
|
|
624
651
|
"name": "30e boundary: anchored, clear of channel, 7.0 m",
|
|
625
652
|
"facts": {
|
|
626
|
-
"position": "anchored",
|
|
627
|
-
"near_channel": false,
|
|
628
|
-
"length_m": 7.0
|
|
653
|
+
"fact:position": "position:anchored",
|
|
654
|
+
"fact:near_channel": false,
|
|
655
|
+
"fact:length_m": 7.0
|
|
629
656
|
},
|
|
630
657
|
"expect": [
|
|
631
658
|
"30a",
|
|
@@ -636,11 +663,11 @@
|
|
|
636
663
|
{
|
|
637
664
|
"name": "24a tow-length boundary: towing 200.0 m",
|
|
638
665
|
"facts": {
|
|
639
|
-
"propulsion": "power",
|
|
640
|
-
"activity": "towing",
|
|
641
|
-
"position": "underway",
|
|
642
|
-
"length_m": 20,
|
|
643
|
-
"tow_length_m": 200.0
|
|
666
|
+
"fact:propulsion": "propulsion:power",
|
|
667
|
+
"fact:activity": "activity:towing",
|
|
668
|
+
"fact:position": "position:underway",
|
|
669
|
+
"fact:length_m": 20,
|
|
670
|
+
"fact:tow_length_m": 200.0
|
|
644
671
|
},
|
|
645
672
|
"expect": [
|
|
646
673
|
"24a-m2",
|
|
@@ -650,11 +677,11 @@
|
|
|
650
677
|
{
|
|
651
678
|
"name": "24a tow-length boundary: towing 200.1 m",
|
|
652
679
|
"facts": {
|
|
653
|
-
"propulsion": "power",
|
|
654
|
-
"activity": "towing",
|
|
655
|
-
"position": "underway",
|
|
656
|
-
"length_m": 20,
|
|
657
|
-
"tow_length_m": 200.1
|
|
680
|
+
"fact:propulsion": "propulsion:power",
|
|
681
|
+
"fact:activity": "activity:towing",
|
|
682
|
+
"fact:position": "position:underway",
|
|
683
|
+
"fact:length_m": 20,
|
|
684
|
+
"fact:tow_length_m": 200.1
|
|
658
685
|
},
|
|
659
686
|
"expect": [
|
|
660
687
|
"24a-m3",
|
|
@@ -664,9 +691,9 @@
|
|
|
664
691
|
{
|
|
665
692
|
"name": "26c-gear boundary: fishing, gear extent 150.0 m",
|
|
666
693
|
"facts": {
|
|
667
|
-
"activity": "fishing",
|
|
668
|
-
"position": "underway",
|
|
669
|
-
"gear_extent_m": 150.0
|
|
694
|
+
"fact:activity": "activity:fishing",
|
|
695
|
+
"fact:position": "position:underway",
|
|
696
|
+
"fact:gear_extent_m": 150.0
|
|
670
697
|
},
|
|
671
698
|
"expect": [
|
|
672
699
|
"26c-id"
|
|
@@ -675,9 +702,9 @@
|
|
|
675
702
|
{
|
|
676
703
|
"name": "26c-gear boundary: fishing, gear extent 150.1 m",
|
|
677
704
|
"facts": {
|
|
678
|
-
"activity": "fishing",
|
|
679
|
-
"position": "underway",
|
|
680
|
-
"gear_extent_m": 150.1
|
|
705
|
+
"fact:activity": "activity:fishing",
|
|
706
|
+
"fact:position": "position:underway",
|
|
707
|
+
"fact:gear_extent_m": 150.1
|
|
681
708
|
},
|
|
682
709
|
"expect": [
|
|
683
710
|
"26c-gear",
|
|
@@ -687,12 +714,12 @@
|
|
|
687
714
|
{
|
|
688
715
|
"name": "wing-in-ground craft near the surface, 25 m",
|
|
689
716
|
"facts": {
|
|
690
|
-
"propulsion": "power",
|
|
691
|
-
"activity": "none",
|
|
692
|
-
"position": "underway",
|
|
693
|
-
"wig": true,
|
|
694
|
-
"wig_near_surface": true,
|
|
695
|
-
"length_m": 25
|
|
717
|
+
"fact:propulsion": "propulsion:power",
|
|
718
|
+
"fact:activity": "activity:none",
|
|
719
|
+
"fact:position": "position:underway",
|
|
720
|
+
"fact:wig": true,
|
|
721
|
+
"fact:wig_near_surface": true,
|
|
722
|
+
"fact:length_m": 25
|
|
696
723
|
},
|
|
697
724
|
"expect": [
|
|
698
725
|
"23a1",
|
|
@@ -704,12 +731,12 @@
|
|
|
704
731
|
{
|
|
705
732
|
"name": "wing-in-ground craft cruising, not near the surface, 25 m",
|
|
706
733
|
"facts": {
|
|
707
|
-
"propulsion": "power",
|
|
708
|
-
"activity": "none",
|
|
709
|
-
"position": "underway",
|
|
710
|
-
"wig": true,
|
|
711
|
-
"wig_near_surface": false,
|
|
712
|
-
"length_m": 25
|
|
734
|
+
"fact:propulsion": "propulsion:power",
|
|
735
|
+
"fact:activity": "activity:none",
|
|
736
|
+
"fact:position": "position:underway",
|
|
737
|
+
"fact:wig": true,
|
|
738
|
+
"fact:wig_near_surface": false,
|
|
739
|
+
"fact:length_m": 25
|
|
713
740
|
},
|
|
714
741
|
"expect": [
|
|
715
742
|
"23a1",
|
|
@@ -720,9 +747,9 @@
|
|
|
720
747
|
{
|
|
721
748
|
"name": "vessel or object being towed astern",
|
|
722
749
|
"facts": {
|
|
723
|
-
"activity": "being_towed",
|
|
724
|
-
"position": "underway",
|
|
725
|
-
"length_m": 15
|
|
750
|
+
"fact:activity": "activity:being_towed",
|
|
751
|
+
"fact:position": "position:underway",
|
|
752
|
+
"fact:length_m": 15
|
|
726
753
|
},
|
|
727
754
|
"expect": [
|
|
728
755
|
"24e"
|
|
@@ -731,10 +758,10 @@
|
|
|
731
758
|
{
|
|
732
759
|
"name": "fishing other than trawling, making way",
|
|
733
760
|
"facts": {
|
|
734
|
-
"activity": "fishing",
|
|
735
|
-
"position": "underway",
|
|
736
|
-
"making_way": true,
|
|
737
|
-
"length_m": 12
|
|
761
|
+
"fact:activity": "activity:fishing",
|
|
762
|
+
"fact:position": "position:underway",
|
|
763
|
+
"fact:making_way": true,
|
|
764
|
+
"fact:length_m": 12
|
|
738
765
|
},
|
|
739
766
|
"expect": [
|
|
740
767
|
"26c-id",
|