aixm 0.3.5 → 0.3.6

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.
@@ -94,6 +94,12 @@ describe AIXM::Component::Runway do
94
94
  <codePcnMaxTirePressure>W</codePcnMaxTirePressure>
95
95
  <codePcnEvalMethod>T</codePcnEvalMethod>
96
96
  <txtPcnNote>Paved shoulder on 2.5m on each side of the RWY.</txtPcnNote>
97
+ <valSiwlWeight>1500</valSiwlWeight>
98
+ <uomSiwlWeight>KG</uomSiwlWeight>
99
+ <valSiwlTirePressure>0.5</valSiwlTirePressure>
100
+ <uomSiwlTirePressure>MPA</uomSiwlTirePressure>
101
+ <valAuwWeight>30</valAuwWeight>
102
+ <uomAuwWeight>T</uomAuwWeight>
97
103
  <codeSts>CLSD</codeSts>
98
104
  <txtRmk>Markings eroded</txtRmk>
99
105
  </Rwy>
@@ -134,6 +140,24 @@ describe AIXM::Component::Runway do
134
140
  <uomDist>M</uomDist>
135
141
  <txtRmk>forth remarks</txtRmk>
136
142
  </Rdd>
143
+ <Rls>
144
+ <RlsUid>
145
+ <RdnUid>
146
+ <RwyUid>
147
+ <AhpUid>
148
+ <codeId>LFNT</codeId>
149
+ </AhpUid>
150
+ <txtDesig>16L/34R</txtDesig>
151
+ </RwyUid>
152
+ <txtDesig>16L</txtDesig>
153
+ </RdnUid>
154
+ <codePsn>AIM</codePsn>
155
+ </RlsUid>
156
+ <txtDescr>omnidirectional</txtDescr>
157
+ <codeIntst>LIM</codeIntst>
158
+ <codeColour>GRN</codeColour>
159
+ <txtRmk>lighting remarks</txtRmk>
160
+ </Rls>
137
161
  <Rdn>
138
162
  <RdnUid>
139
163
  <RwyUid>
@@ -171,13 +195,32 @@ describe AIXM::Component::Runway do
171
195
  <uomDist>M</uomDist>
172
196
  <txtRmk>back remarks</txtRmk>
173
197
  </Rdd>
198
+ <Rls>
199
+ <RlsUid>
200
+ <RdnUid>
201
+ <RwyUid>
202
+ <AhpUid>
203
+ <codeId>LFNT</codeId>
204
+ </AhpUid>
205
+ <txtDesig>16L/34R</txtDesig>
206
+ </RwyUid>
207
+ <txtDesig>34R</txtDesig>
208
+ </RdnUid>
209
+ <codePsn>AIM</codePsn>
210
+ </RlsUid>
211
+ <txtDescr>omnidirectional</txtDescr>
212
+ <codeIntst>LIM</codeIntst>
213
+ <codeColour>GRN</codeColour>
214
+ <txtRmk>lighting remarks</txtRmk>
215
+ </Rls>
174
216
  END
175
217
  end
176
218
 
177
219
  it "builds correct minimal OFMX" do
178
220
  AIXM.ofmx!
179
221
  %i(length width status remarks).each { |a| subject.send(:"#{a}=", nil) }
180
- %i(composition preparation condition pcn remarks).each { |a| subject.surface.send(:"#{a}=", nil) }
222
+ %i(composition preparation condition pcn siwl_weight siwl_tire_pressure auw_weight remarks).each { |a| subject.surface.send(:"#{a}=", nil) }
223
+ %i(forth back).each { |d| subject.send(d).instance_eval { @lightings.clear } }
181
224
  subject.to_xml.must_equal <<~END
182
225
  <Rwy>
183
226
  <RwyUid>
@@ -264,7 +307,6 @@ describe AIXM::Component::Runway do
264
307
  END
265
308
  end
266
309
  end
267
-
268
310
  end
269
311
 
270
312
  describe AIXM::Component::Runway::Direction do
@@ -385,12 +427,31 @@ describe AIXM::Component::Runway::Direction do
385
427
  <uomDist>M</uomDist>
386
428
  <txtRmk>forth remarks</txtRmk>
387
429
  </Rdd>
430
+ <Rls>
431
+ <RlsUid>
432
+ <RdnUid>
433
+ <RwyUid>
434
+ <AhpUid>
435
+ <codeId>LFNT</codeId>
436
+ </AhpUid>
437
+ <txtDesig>16L/34R</txtDesig>
438
+ </RwyUid>
439
+ <txtDesig>16L</txtDesig>
440
+ </RdnUid>
441
+ <codePsn>AIM</codePsn>
442
+ </RlsUid>
443
+ <txtDescr>omnidirectional</txtDescr>
444
+ <codeIntst>LIM</codeIntst>
445
+ <codeColour>GRN</codeColour>
446
+ <txtRmk>lighting remarks</txtRmk>
447
+ </Rls>
388
448
  END
389
449
  end
390
450
 
391
451
  it "builds correct minimal OFMX" do
392
452
  AIXM.ofmx!
393
453
  %i(geographic_orientation z displaced_threshold vfr_pattern remarks).each { |a| subject.send(:"#{a}=", nil) }
454
+ subject.instance_eval { @lightings.clear }
394
455
  subject.to_xml.must_equal <<~END
395
456
  <Rdn>
396
457
  <RdnUid>
@@ -408,5 +469,4 @@ describe AIXM::Component::Runway::Direction do
408
469
  END
409
470
  end
410
471
  end
411
-
412
472
  end
@@ -66,6 +66,36 @@ describe AIXM::Component::Surface do
66
66
  end
67
67
  end
68
68
 
69
+ describe :siwl_weight= do
70
+ it "fails on invalid values" do
71
+ [:foobar, 123].wont_be_written_to subject, :siwl_weight
72
+ end
73
+
74
+ it "accepts valid values" do
75
+ [nil, AIXM::Factory.w].must_be_written_to subject, :siwl_weight
76
+ end
77
+ end
78
+
79
+ describe :siwl_tire_pressure= do
80
+ it "fails on invalid values" do
81
+ [:foobar, 123].wont_be_written_to subject, :siwl_tire_pressure
82
+ end
83
+
84
+ it "accepts valid values" do
85
+ [nil, AIXM::Factory.p].must_be_written_to subject, :siwl_tire_pressure
86
+ end
87
+ end
88
+
89
+ describe :auw_weight= do
90
+ it "fails on invalid values" do
91
+ [:foobar, 123].wont_be_written_to subject, :auw_weight
92
+ end
93
+
94
+ it "accepts valid values" do
95
+ [nil, AIXM::Factory.w].must_be_written_to subject, :auw_weight
96
+ end
97
+ end
98
+
69
99
  describe :remarks= do
70
100
  macro :remarks
71
101
  end
@@ -82,6 +112,12 @@ describe AIXM::Component::Surface do
82
112
  <codePcnMaxTirePressure>W</codePcnMaxTirePressure>
83
113
  <codePcnEvalMethod>T</codePcnEvalMethod>
84
114
  <txtPcnNote>Paved shoulder on 2.5m on each side of the RWY.</txtPcnNote>
115
+ <valSiwlWeight>1500</valSiwlWeight>
116
+ <uomSiwlWeight>KG</uomSiwlWeight>
117
+ <valSiwlTirePressure>0.5</valSiwlTirePressure>
118
+ <uomSiwlTirePressure>MPA</uomSiwlTirePressure>
119
+ <valAuwWeight>30</valAuwWeight>
120
+ <uomAuwWeight>T</uomAuwWeight>
85
121
  END
86
122
  end
87
123
  end
@@ -139,11 +139,11 @@ describe AIXM::D do
139
139
  end
140
140
 
141
141
  describe :zero? do
142
- it "returns true for zero length" do
142
+ it "returns true for zero distance" do
143
143
  subject.tap { |s| s.dist = 0 }.must_be :zero?
144
144
  end
145
145
 
146
- it "returns false for non-zero length" do
146
+ it "returns false for non-zero distance" do
147
147
  subject.tap { |s| s.dist = 1 }.wont_be :zero?
148
148
  end
149
149
  end
@@ -25,6 +25,16 @@ describe AIXM::Document do
25
25
  end
26
26
  end
27
27
 
28
+ describe :region= do
29
+ it "fails on invalid values" do
30
+ ['x', 'foobar', :foobar].wont_be_written_to subject, :region
31
+ end
32
+
33
+ it "upcases valid values" do
34
+ subject.tap { |s| s.region = 'lf' }.region.must_equal 'LF'
35
+ end
36
+ end
37
+
28
38
  describe :created_at= do
29
39
  it "fails on invalid values" do
30
40
  ['foobar', '2018-01-77'].wont_be_written_to subject, :created_at
@@ -164,6 +174,7 @@ describe AIXM::Document do
164
174
  <valElev>146</valElev>
165
175
  <uomDistVer>FT</uomDistVer>
166
176
  <valMagVar>1.08</valMagVar>
177
+ <txtNameAdmin>MUNICIPALITY OF PUJAUT</txtNameAdmin>
167
178
  <valTransitionAlt>10000</valTransitionAlt>
168
179
  <uomTransitionAlt>FT</uomTransitionAlt>
169
180
  <txtRmk>Restricted access</txtRmk>
@@ -187,6 +198,12 @@ describe AIXM::Document do
187
198
  <codePcnMaxTirePressure>W</codePcnMaxTirePressure>
188
199
  <codePcnEvalMethod>T</codePcnEvalMethod>
189
200
  <txtPcnNote>Paved shoulder on 2.5m on each side of the RWY.</txtPcnNote>
201
+ <valSiwlWeight>1500</valSiwlWeight>
202
+ <uomSiwlWeight>KG</uomSiwlWeight>
203
+ <valSiwlTirePressure>0.5</valSiwlTirePressure>
204
+ <uomSiwlTirePressure>MPA</uomSiwlTirePressure>
205
+ <valAuwWeight>30</valAuwWeight>
206
+ <uomAuwWeight>T</uomAuwWeight>
190
207
  <codeSts>CLSD</codeSts>
191
208
  <txtRmk>Markings eroded</txtRmk>
192
209
  </Rwy>
@@ -227,6 +244,24 @@ describe AIXM::Document do
227
244
  <uomDist>M</uomDist>
228
245
  <txtRmk>forth remarks</txtRmk>
229
246
  </Rdd>
247
+ <Rls>
248
+ <RlsUid>
249
+ <RdnUid>
250
+ <RwyUid>
251
+ <AhpUid>
252
+ <codeId>LFNT</codeId>
253
+ </AhpUid>
254
+ <txtDesig>16L/34R</txtDesig>
255
+ </RwyUid>
256
+ <txtDesig>16L</txtDesig>
257
+ </RdnUid>
258
+ <codePsn>AIM</codePsn>
259
+ </RlsUid>
260
+ <txtDescr>omnidirectional</txtDescr>
261
+ <codeIntst>LIM</codeIntst>
262
+ <codeColour>GRN</codeColour>
263
+ <txtRmk>lighting remarks</txtRmk>
264
+ </Rls>
230
265
  <Rdn>
231
266
  <RdnUid>
232
267
  <RwyUid>
@@ -264,6 +299,86 @@ describe AIXM::Document do
264
299
  <uomDist>M</uomDist>
265
300
  <txtRmk>back remarks</txtRmk>
266
301
  </Rdd>
302
+ <Rls>
303
+ <RlsUid>
304
+ <RdnUid>
305
+ <RwyUid>
306
+ <AhpUid>
307
+ <codeId>LFNT</codeId>
308
+ </AhpUid>
309
+ <txtDesig>16L/34R</txtDesig>
310
+ </RwyUid>
311
+ <txtDesig>34R</txtDesig>
312
+ </RdnUid>
313
+ <codePsn>AIM</codePsn>
314
+ </RlsUid>
315
+ <txtDescr>omnidirectional</txtDescr>
316
+ <codeIntst>LIM</codeIntst>
317
+ <codeColour>GRN</codeColour>
318
+ <txtRmk>lighting remarks</txtRmk>
319
+ </Rls>
320
+ <Fto>
321
+ <FtoUid>
322
+ <AhpUid>
323
+ <codeId>LFNT</codeId>
324
+ </AhpUid>
325
+ <txtDesig>H1</txtDesig>
326
+ </FtoUid>
327
+ <valLen>35</valLen>
328
+ <valWid>35</valWid>
329
+ <uomDim>M</uomDim>
330
+ <codeComposition>CONC</codeComposition>
331
+ <codePreparation>PAVED</codePreparation>
332
+ <codeCondSfc>FAIR</codeCondSfc>
333
+ <valPcnClass>30</valPcnClass>
334
+ <codePcnPavementType>F</codePcnPavementType>
335
+ <codePcnPavementSubgrade>A</codePcnPavementSubgrade>
336
+ <codePcnMaxTirePressure>W</codePcnMaxTirePressure>
337
+ <codePcnEvalMethod>U</codePcnEvalMethod>
338
+ <txtPcnNote>Cracks near the center</txtPcnNote>
339
+ <valSiwlWeight>1500</valSiwlWeight>
340
+ <uomSiwlWeight>KG</uomSiwlWeight>
341
+ <valSiwlTirePressure>0.5</valSiwlTirePressure>
342
+ <uomSiwlTirePressure>MPA</uomSiwlTirePressure>
343
+ <valAuwWeight>8</valAuwWeight>
344
+ <uomAuwWeight>T</uomAuwWeight>
345
+ <txtProfile>Northwest from RWY 12/30</txtProfile>
346
+ <txtMarking>Dashed white lines</txtMarking>
347
+ <codeSts>OTHER</codeSts>
348
+ <txtRmk>Authorizaton by AD operator required</txtRmk>
349
+ </Fto>
350
+ <Fdn>
351
+ <FdnUid>
352
+ <FtoUid>
353
+ <AhpUid>
354
+ <codeId>LFNT</codeId>
355
+ </AhpUid>
356
+ <txtDesig>H1</txtDesig>
357
+ </FtoUid>
358
+ <txtDesig>35</txtDesig>
359
+ </FdnUid>
360
+ <valTrueBrg>355</valTrueBrg>
361
+ <valMagBrg>356</valMagBrg>
362
+ <txtRmk>Avoid flight over residental area</txtRmk>
363
+ </Fdn>
364
+ <Fls>
365
+ <FlsUid>
366
+ <FdnUid>
367
+ <FtoUid>
368
+ <AhpUid>
369
+ <codeId>LFNT</codeId>
370
+ </AhpUid>
371
+ <txtDesig>H1</txtDesig>
372
+ </FtoUid>
373
+ <txtDesig>35</txtDesig>
374
+ </FdnUid>
375
+ <codePsn>AIM</codePsn>
376
+ </FlsUid>
377
+ <txtDescr>omnidirectional</txtDescr>
378
+ <codeIntst>LIM</codeIntst>
379
+ <codeColour>GRN</codeColour>
380
+ <txtRmk>lighting remarks</txtRmk>
381
+ </Fls>
267
382
  <Tla>
268
383
  <TlaUid>
269
384
  <AhpUid>
@@ -271,6 +386,12 @@ describe AIXM::Document do
271
386
  </AhpUid>
272
387
  <txtDesig>H1</txtDesig>
273
388
  </TlaUid>
389
+ <FtoUid>
390
+ <AhpUid>
391
+ <codeId>LFNT</codeId>
392
+ </AhpUid>
393
+ <txtDesig>H1</txtDesig>
394
+ </FtoUid>
274
395
  <geoLat>435956.94N</geoLat>
275
396
  <geoLong>0044505.56E</geoLong>
276
397
  <codeDatum>WGE</codeDatum>
@@ -287,10 +408,33 @@ describe AIXM::Document do
287
408
  <codePcnPavementSubgrade>A</codePcnPavementSubgrade>
288
409
  <codePcnMaxTirePressure>W</codePcnMaxTirePressure>
289
410
  <codePcnEvalMethod>U</codePcnEvalMethod>
290
- <txtPcnNote>Cracks near the center.</txtPcnNote>
411
+ <txtPcnNote>Cracks near the center</txtPcnNote>
412
+ <valSiwlWeight>1500</valSiwlWeight>
413
+ <uomSiwlWeight>KG</uomSiwlWeight>
414
+ <valSiwlTirePressure>0.5</valSiwlTirePressure>
415
+ <uomSiwlTirePressure>MPA</uomSiwlTirePressure>
416
+ <valAuwWeight>8</valAuwWeight>
417
+ <uomAuwWeight>T</uomAuwWeight>
418
+ <codeClassHel>1</codeClassHel>
419
+ <txtMarking>Continuous white lines</txtMarking>
291
420
  <codeSts>OTHER</codeSts>
292
421
  <txtRmk>Authorizaton by AD operator required</txtRmk>
293
422
  </Tla>
423
+ <Tls>
424
+ <TlsUid>
425
+ <TlaUid>
426
+ <AhpUid>
427
+ <codeId>LFNT</codeId>
428
+ </AhpUid>
429
+ <txtDesig>H1</txtDesig>
430
+ </TlaUid>
431
+ <codePsn>AIM</codePsn>
432
+ </TlsUid>
433
+ <txtDescr>omnidirectional</txtDescr>
434
+ <codeIntst>LIM</codeIntst>
435
+ <codeColour>GRN</codeColour>
436
+ <txtRmk>lighting remarks</txtRmk>
437
+ </Tls>
294
438
  <Ahu>
295
439
  <AhuUid>
296
440
  <AhpUid>
@@ -846,6 +990,7 @@ describe AIXM::Document do
846
990
  <valElev>146</valElev>
847
991
  <uomDistVer>FT</uomDistVer>
848
992
  <valMagVar>1.08</valMagVar>
993
+ <txtNameAdmin>MUNICIPALITY OF PUJAUT</txtNameAdmin>
849
994
  <valTransitionAlt>10000</valTransitionAlt>
850
995
  <uomTransitionAlt>FT</uomTransitionAlt>
851
996
  <txtRmk>Restricted access</txtRmk>
@@ -869,6 +1014,12 @@ describe AIXM::Document do
869
1014
  <codePcnMaxTirePressure>W</codePcnMaxTirePressure>
870
1015
  <codePcnEvalMethod>T</codePcnEvalMethod>
871
1016
  <txtPcnNote>Paved shoulder on 2.5m on each side of the RWY.</txtPcnNote>
1017
+ <valSiwlWeight>1500</valSiwlWeight>
1018
+ <uomSiwlWeight>KG</uomSiwlWeight>
1019
+ <valSiwlTirePressure>0.5</valSiwlTirePressure>
1020
+ <uomSiwlTirePressure>MPA</uomSiwlTirePressure>
1021
+ <valAuwWeight>30</valAuwWeight>
1022
+ <uomAuwWeight>T</uomAuwWeight>
872
1023
  <codeSts>CLSD</codeSts>
873
1024
  <txtRmk>Markings eroded</txtRmk>
874
1025
  </Rwy>
@@ -909,6 +1060,24 @@ describe AIXM::Document do
909
1060
  <uomDist>M</uomDist>
910
1061
  <txtRmk>forth remarks</txtRmk>
911
1062
  </Rdd>
1063
+ <Rls>
1064
+ <RlsUid>
1065
+ <RdnUid>
1066
+ <RwyUid>
1067
+ <AhpUid>
1068
+ <codeId>LFNT</codeId>
1069
+ </AhpUid>
1070
+ <txtDesig>16L/34R</txtDesig>
1071
+ </RwyUid>
1072
+ <txtDesig>16L</txtDesig>
1073
+ </RdnUid>
1074
+ <codePsn>AIM</codePsn>
1075
+ </RlsUid>
1076
+ <txtDescr>omnidirectional</txtDescr>
1077
+ <codeIntst>LIM</codeIntst>
1078
+ <codeColour>GRN</codeColour>
1079
+ <txtRmk>lighting remarks</txtRmk>
1080
+ </Rls>
912
1081
  <Rdn>
913
1082
  <RdnUid>
914
1083
  <RwyUid>
@@ -946,6 +1115,86 @@ describe AIXM::Document do
946
1115
  <uomDist>M</uomDist>
947
1116
  <txtRmk>back remarks</txtRmk>
948
1117
  </Rdd>
1118
+ <Rls>
1119
+ <RlsUid>
1120
+ <RdnUid>
1121
+ <RwyUid>
1122
+ <AhpUid>
1123
+ <codeId>LFNT</codeId>
1124
+ </AhpUid>
1125
+ <txtDesig>16L/34R</txtDesig>
1126
+ </RwyUid>
1127
+ <txtDesig>34R</txtDesig>
1128
+ </RdnUid>
1129
+ <codePsn>AIM</codePsn>
1130
+ </RlsUid>
1131
+ <txtDescr>omnidirectional</txtDescr>
1132
+ <codeIntst>LIM</codeIntst>
1133
+ <codeColour>GRN</codeColour>
1134
+ <txtRmk>lighting remarks</txtRmk>
1135
+ </Rls>
1136
+ <Fto>
1137
+ <FtoUid>
1138
+ <AhpUid>
1139
+ <codeId>LFNT</codeId>
1140
+ </AhpUid>
1141
+ <txtDesig>H1</txtDesig>
1142
+ </FtoUid>
1143
+ <valLen>35</valLen>
1144
+ <valWid>35</valWid>
1145
+ <uomDim>M</uomDim>
1146
+ <codeComposition>CONC</codeComposition>
1147
+ <codePreparation>PAVED</codePreparation>
1148
+ <codeCondSfc>FAIR</codeCondSfc>
1149
+ <valPcnClass>30</valPcnClass>
1150
+ <codePcnPavementType>F</codePcnPavementType>
1151
+ <codePcnPavementSubgrade>A</codePcnPavementSubgrade>
1152
+ <codePcnMaxTirePressure>W</codePcnMaxTirePressure>
1153
+ <codePcnEvalMethod>U</codePcnEvalMethod>
1154
+ <txtPcnNote>Cracks near the center</txtPcnNote>
1155
+ <valSiwlWeight>1500</valSiwlWeight>
1156
+ <uomSiwlWeight>KG</uomSiwlWeight>
1157
+ <valSiwlTirePressure>0.5</valSiwlTirePressure>
1158
+ <uomSiwlTirePressure>MPA</uomSiwlTirePressure>
1159
+ <valAuwWeight>8</valAuwWeight>
1160
+ <uomAuwWeight>T</uomAuwWeight>
1161
+ <txtProfile>Northwest from RWY 12/30</txtProfile>
1162
+ <txtMarking>Dashed white lines</txtMarking>
1163
+ <codeSts>OTHER</codeSts>
1164
+ <txtRmk>Authorizaton by AD operator required</txtRmk>
1165
+ </Fto>
1166
+ <Fdn>
1167
+ <FdnUid>
1168
+ <FtoUid>
1169
+ <AhpUid>
1170
+ <codeId>LFNT</codeId>
1171
+ </AhpUid>
1172
+ <txtDesig>H1</txtDesig>
1173
+ </FtoUid>
1174
+ <txtDesig>35</txtDesig>
1175
+ </FdnUid>
1176
+ <valTrueBrg>355</valTrueBrg>
1177
+ <valMagBrg>356</valMagBrg>
1178
+ <txtRmk>Avoid flight over residental area</txtRmk>
1179
+ </Fdn>
1180
+ <Fls>
1181
+ <FlsUid>
1182
+ <FdnUid>
1183
+ <FtoUid>
1184
+ <AhpUid>
1185
+ <codeId>LFNT</codeId>
1186
+ </AhpUid>
1187
+ <txtDesig>H1</txtDesig>
1188
+ </FtoUid>
1189
+ <txtDesig>35</txtDesig>
1190
+ </FdnUid>
1191
+ <codePsn>AIM</codePsn>
1192
+ </FlsUid>
1193
+ <txtDescr>omnidirectional</txtDescr>
1194
+ <codeIntst>LIM</codeIntst>
1195
+ <codeColour>GRN</codeColour>
1196
+ <txtRmk>lighting remarks</txtRmk>
1197
+ </Fls>
949
1198
  <Tla>
950
1199
  <TlaUid>
951
1200
  <AhpUid>
@@ -953,6 +1202,12 @@ describe AIXM::Document do
953
1202
  </AhpUid>
954
1203
  <txtDesig>H1</txtDesig>
955
1204
  </TlaUid>
1205
+ <FtoUid>
1206
+ <AhpUid>
1207
+ <codeId>LFNT</codeId>
1208
+ </AhpUid>
1209
+ <txtDesig>H1</txtDesig>
1210
+ </FtoUid>
956
1211
  <geoLat>43.99915000N</geoLat>
957
1212
  <geoLong>004.75154444E</geoLong>
958
1213
  <codeDatum>WGE</codeDatum>
@@ -969,10 +1224,33 @@ describe AIXM::Document do
969
1224
  <codePcnPavementSubgrade>A</codePcnPavementSubgrade>
970
1225
  <codePcnMaxTirePressure>W</codePcnMaxTirePressure>
971
1226
  <codePcnEvalMethod>U</codePcnEvalMethod>
972
- <txtPcnNote>Cracks near the center.</txtPcnNote>
1227
+ <txtPcnNote>Cracks near the center</txtPcnNote>
1228
+ <valSiwlWeight>1500</valSiwlWeight>
1229
+ <uomSiwlWeight>KG</uomSiwlWeight>
1230
+ <valSiwlTirePressure>0.5</valSiwlTirePressure>
1231
+ <uomSiwlTirePressure>MPA</uomSiwlTirePressure>
1232
+ <valAuwWeight>8</valAuwWeight>
1233
+ <uomAuwWeight>T</uomAuwWeight>
1234
+ <codeClassHel>1</codeClassHel>
1235
+ <txtMarking>Continuous white lines</txtMarking>
973
1236
  <codeSts>OTHER</codeSts>
974
1237
  <txtRmk>Authorizaton by AD operator required</txtRmk>
975
1238
  </Tla>
1239
+ <Tls>
1240
+ <TlsUid>
1241
+ <TlaUid>
1242
+ <AhpUid>
1243
+ <codeId>LFNT</codeId>
1244
+ </AhpUid>
1245
+ <txtDesig>H1</txtDesig>
1246
+ </TlaUid>
1247
+ <codePsn>AIM</codePsn>
1248
+ </TlsUid>
1249
+ <txtDescr>omnidirectional</txtDescr>
1250
+ <codeIntst>LIM</codeIntst>
1251
+ <codeColour>GRN</codeColour>
1252
+ <txtRmk>lighting remarks</txtRmk>
1253
+ </Tls>
976
1254
  <Ahu>
977
1255
  <AhuUid>
978
1256
  <AhpUid>