gps_pvt 0.9.4 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2185 @@
1
+ ULP DEFINITIONS AUTOMATIC TAGS ::= BEGIN
2
+
3
+ IMPORTS
4
+ Version, SessionID FROM ULP-Components
5
+ SUPLINIT FROM SUPL-INIT
6
+ SUPLSTART FROM SUPL-START
7
+ SUPLRESPONSE FROM SUPL-RESPONSE
8
+ SUPLPOSINIT FROM SUPL-POS-INIT
9
+ SUPLPOS FROM SUPL-POS
10
+ SUPLEND FROM SUPL-END
11
+ SUPLAUTHREQ FROM SUPL-AUTH-REQ
12
+ SUPLAUTHRESP FROM SUPL-AUTH-RESP
13
+ Ver2-SUPLTRIGGEREDSTART FROM SUPL-TRIGGERED-START
14
+ Ver2-SUPLTRIGGEREDRESPONSE FROM SUPL-TRIGGERED-RESPONSE
15
+ Ver2-SUPLREPORT FROM SUPL-REPORT
16
+ Ver2-SUPLTRIGGEREDSTOP FROM SUPL-TRIGGERED-STOP
17
+ Ver2-SUPLSETINIT FROM SUPL-SET-INIT
18
+ Ver2-SUPLNOTIFY FROM SUPL-NOTIFY
19
+ Ver2-SUPLNOTIFYRESPONSE FROM SUPL-NOTIFY-RESPONSE;
20
+
21
+ -- general ULP PDU layout;--
22
+ ULP-PDU ::= SEQUENCE {
23
+ length INTEGER(0..65535),
24
+ version Version,
25
+ sessionID SessionID,
26
+ message UlpMessage
27
+ }
28
+
29
+ UlpMessage ::= CHOICE {
30
+ msSUPLINIT SUPLINIT,
31
+ msSUPLSTART SUPLSTART,
32
+ msSUPLRESPONSE SUPLRESPONSE,
33
+ msSUPLPOSINIT SUPLPOSINIT,
34
+ msSUPLPOS SUPLPOS,
35
+ msSUPLEND SUPLEND,
36
+ msSUPLAUTHREQ SUPLAUTHREQ,
37
+ msSUPLAUTHRESP SUPLAUTHRESP,
38
+ ...,
39
+ msSUPLTRIGGEREDSTART Ver2-SUPLTRIGGEREDSTART,
40
+ msSUPLTRIGGEREDRESPONSE Ver2-SUPLTRIGGEREDRESPONSE,
41
+ msSUPLTRIGGEREDSTOP Ver2-SUPLTRIGGEREDSTOP,
42
+ msSUPLNOTIFY Ver2-SUPLNOTIFY,
43
+ msSUPLNOTIFYRESPONSE Ver2-SUPLNOTIFYRESPONSE,
44
+ msSUPLSETINIT Ver2-SUPLSETINIT,
45
+ msSUPLREPORT Ver2-SUPLREPORT
46
+ }
47
+
48
+ END
49
+
50
+
51
+ SUPL-INIT DEFINITIONS AUTOMATIC TAGS ::= BEGIN
52
+
53
+ EXPORTS SUPLINIT, Notification;
54
+
55
+ IMPORTS
56
+ SLPAddress, QoP, PosMethod
57
+ FROM ULP-Components
58
+ Ver2-SUPL-INIT-extension FROM ULP-Version-2-message-extensions
59
+ Ver2-Notification-extension FROM ULP-Version-2-parameter-extensions;
60
+
61
+ SUPLINIT ::= SEQUENCE {
62
+ posMethod PosMethod,
63
+ notification Notification OPTIONAL,
64
+ sLPAddress SLPAddress OPTIONAL,
65
+ qoP QoP OPTIONAL,
66
+ sLPMode SLPMode,
67
+ mac MAC OPTIONAL, -- included for backwards compatibility
68
+ keyIdentity KeyIdentity OPTIONAL, -- included for backwards compatibility
69
+ ...,
70
+ -- version 2 extension element
71
+ ver2-SUPL-INIT-extension Ver2-SUPL-INIT-extension OPTIONAL
72
+ }
73
+
74
+ Notification ::= SEQUENCE {
75
+ notificationType NotificationType,
76
+ encodingType EncodingType OPTIONAL,
77
+ requestorId OCTET STRING(SIZE (1..maxReqLength)) OPTIONAL,
78
+ requestorIdType FormatIndicator OPTIONAL,
79
+ clientName OCTET STRING(SIZE (1..maxClientLength)) OPTIONAL,
80
+ clientNameType FormatIndicator OPTIONAL,
81
+ ...,
82
+ ver2-Notification-extension Ver2-Notification-extension OPTIONAL
83
+ }
84
+
85
+ NotificationType ::= ENUMERATED {
86
+ noNotificationNoVerification(0),
87
+ notificationOnly(1),
88
+ notificationAndVerficationAllowedNA(2),
89
+ notificationAndVerficationDeniedNA(3),
90
+ privacyOverride(4),
91
+ ...
92
+ }
93
+
94
+ EncodingType ::= ENUMERATED {
95
+ ucs2(0),
96
+ gsmDefault(1),
97
+ utf8(2),
98
+ ...
99
+ }
100
+
101
+ maxReqLength INTEGER ::= 50
102
+
103
+ maxClientLength INTEGER ::= 50
104
+
105
+ FormatIndicator ::= ENUMERATED {
106
+ logicalName(0),
107
+ e-mailAddress(1),
108
+ msisdn(2),
109
+ url(3),
110
+ sipUrl(4),
111
+ min(5),
112
+ mdn(6),
113
+ iMSPublicidentity(7),
114
+ ...
115
+ }
116
+
117
+ SLPMode ::= ENUMERATED {proxy(0), nonProxy(1)}
118
+
119
+ MAC ::= BIT STRING(SIZE (64)) -- empty placeholder required for SUPL 1.0 backwards compatibility
120
+
121
+ KeyIdentity ::= BIT STRING(SIZE (128)) -- empty placeholder required for SUPL 1.0 backwards compatibility
122
+
123
+ END
124
+
125
+
126
+ SUPL-START DEFINITIONS AUTOMATIC TAGS ::= BEGIN
127
+
128
+ EXPORTS SUPLSTART, SETCapabilities;
129
+
130
+ IMPORTS
131
+ LocationId, QoP
132
+ FROM ULP-Components
133
+ Ver2-SUPL-START-extension FROM ULP-Version-2-message-extensions
134
+ Ver2-SETCapabilities-extension,
135
+ Ver2-PosProtocol-extension,
136
+ Ver2-PosTechnology-extension
137
+ FROM ULP-Version-2-parameter-extensions;
138
+
139
+ SUPLSTART ::= SEQUENCE {
140
+ sETCapabilities SETCapabilities,
141
+ locationId LocationId,
142
+ qoP QoP OPTIONAL,
143
+ ...,
144
+ -- version 2 extension element
145
+ ver2-SUPL-START-extension Ver2-SUPL-START-extension OPTIONAL
146
+ }
147
+
148
+ SETCapabilities ::= SEQUENCE {
149
+ posTechnology PosTechnology,
150
+ prefMethod PrefMethod,
151
+ posProtocol PosProtocol,
152
+ ...,
153
+ ver2-SETCapabilities-extension Ver2-SETCapabilities-extension OPTIONAL
154
+ }
155
+
156
+ PosTechnology ::= SEQUENCE {
157
+ agpsSETassisted BOOLEAN,
158
+ agpsSETBased BOOLEAN,
159
+ autonomousGPS BOOLEAN,
160
+ aflt BOOLEAN,
161
+ ecid BOOLEAN,
162
+ eotd BOOLEAN,
163
+ otdoa BOOLEAN,
164
+ ...,
165
+ ver2-PosTechnology-extension Ver2-PosTechnology-extension OPTIONAL
166
+ }
167
+
168
+ PrefMethod ::= ENUMERATED {
169
+ agpsSETassistedPreferred,
170
+ agpsSETBasedPreferred,
171
+ noPreference
172
+ }
173
+ -- To achieve compatibility with ULP V1.0 the names of the enumerations are
174
+ -- kept the same as in ULP V1.0. agps shall be interpreted as agnss.
175
+
176
+ PosProtocol ::= SEQUENCE {
177
+ tia801 BOOLEAN,
178
+ rrlp BOOLEAN,
179
+ rrc BOOLEAN,
180
+ ...,
181
+ ver2-PosProtocol-extension Ver2-PosProtocol-extension OPTIONAL
182
+ }
183
+
184
+ END
185
+
186
+
187
+ SUPL-RESPONSE DEFINITIONS AUTOMATIC TAGS ::= BEGIN
188
+
189
+ EXPORTS SUPLRESPONSE;
190
+
191
+ IMPORTS
192
+ PosMethod, SLPAddress
193
+ FROM ULP-Components
194
+ Ver2-SUPL-RESPONSE-extension FROM ULP-Version-2-message-extensions;
195
+
196
+ SUPLRESPONSE ::= SEQUENCE {
197
+ posMethod PosMethod,
198
+ sLPAddress SLPAddress OPTIONAL,
199
+ sETAuthKey SETAuthKey OPTIONAL, -- included for backwards compatibility
200
+ keyIdentity4 KeyIdentity4 OPTIONAL, -- included for backwards compatibility
201
+ ...,
202
+ -- version 2 extension element
203
+ ver2-SUPL-RESPONSE-extension Ver2-SUPL-RESPONSE-extension OPTIONAL
204
+ }
205
+
206
+ SETAuthKey ::= CHOICE {
207
+ shortKey BIT STRING(SIZE (128)),
208
+ longKey BIT STRING(SIZE (256)),
209
+ ...
210
+ }
211
+
212
+ KeyIdentity4 ::= BIT STRING(SIZE (128))
213
+
214
+ END
215
+
216
+
217
+ SUPL-POS-INIT DEFINITIONS AUTOMATIC TAGS ::= BEGIN
218
+
219
+ EXPORTS SUPLPOSINIT;
220
+
221
+ IMPORTS
222
+ SUPLPOS FROM SUPL-POS
223
+ SETCapabilities FROM SUPL-START
224
+ LocationId, Position, Ver FROM ULP-Components
225
+ Ver2-SUPL-POS-INIT-extension FROM ULP-Version-2-message-extensions
226
+ Ver2-RequestedAssistData-extension FROM ULP-Version-2-parameter-extensions;
227
+
228
+ SUPLPOSINIT ::= SEQUENCE {
229
+ sETCapabilities SETCapabilities,
230
+ requestedAssistData RequestedAssistData OPTIONAL,
231
+ locationId LocationId,
232
+ position Position OPTIONAL,
233
+ suplpos SUPLPOS OPTIONAL,
234
+ ver Ver OPTIONAL,
235
+ ...,
236
+ -- version 2 extension element
237
+ ver2-SUPL-POS-INIT-extension Ver2-SUPL-POS-INIT-extension OPTIONAL
238
+ }
239
+
240
+ RequestedAssistData ::= SEQUENCE {
241
+ almanacRequested BOOLEAN,
242
+ utcModelRequested BOOLEAN,
243
+ ionosphericModelRequested BOOLEAN,
244
+ dgpsCorrectionsRequested BOOLEAN,
245
+ referenceLocationRequested BOOLEAN, -- Note: Used also for GANSS
246
+ referenceTimeRequested BOOLEAN,
247
+ acquisitionAssistanceRequested BOOLEAN,
248
+ realTimeIntegrityRequested BOOLEAN,
249
+ navigationModelRequested BOOLEAN,
250
+ navigationModelData NavigationModel OPTIONAL,
251
+ ...,
252
+ ver2-RequestedAssistData-extension Ver2-RequestedAssistData-extension OPTIONAL
253
+ }
254
+
255
+ NavigationModel ::= SEQUENCE {
256
+ gpsWeek INTEGER(0..1023),
257
+ gpsToe INTEGER(0..167),
258
+ nsat INTEGER(0..31),
259
+ toeLimit INTEGER(0..10),
260
+ satInfo SatelliteInfo OPTIONAL,
261
+ ...
262
+ }
263
+
264
+ -- Further information on this fields can be found
265
+ -- in [3GPP RRLP]and [3GPP 49.031]
266
+
267
+ SatelliteInfo ::= SEQUENCE (SIZE (1..31)) OF SatelliteInfoElement
268
+
269
+ SatelliteInfoElement ::= SEQUENCE {
270
+ satId INTEGER(0..63),
271
+ iode INTEGER(0..255),
272
+ ...
273
+ }
274
+
275
+ END
276
+
277
+
278
+ SUPL-POS DEFINITIONS AUTOMATIC TAGS ::= BEGIN
279
+
280
+ EXPORTS SUPLPOS;
281
+
282
+ IMPORTS
283
+ Velocity FROM ULP-Components
284
+ Ver2-SUPL-POS-extension
285
+ FROM ULP-Version-2-message-extensions Ver2-PosPayLoad-extension
286
+ FROM ULP-Version-2-parameter-extensions;
287
+
288
+ SUPLPOS ::= SEQUENCE {
289
+ posPayLoad PosPayLoad,
290
+ velocity Velocity OPTIONAL,
291
+ ...,
292
+ -- version 2 extension element
293
+ ver2-SUPL-POS-extension Ver2-SUPL-POS-extension OPTIONAL
294
+ }
295
+
296
+ PosPayLoad ::= CHOICE {
297
+ tia801payload OCTET STRING(SIZE (1..8192)),
298
+ rrcPayload OCTET STRING(SIZE (1..8192)),
299
+ rrlpPayload OCTET STRING(SIZE (1..8192)),
300
+ ...,
301
+ ver2-PosPayLoad-extension Ver2-PosPayLoad-extension
302
+ }
303
+
304
+ END
305
+
306
+
307
+ SUPL-END DEFINITIONS AUTOMATIC TAGS ::= BEGIN
308
+
309
+ EXPORTS SUPLEND;
310
+
311
+ IMPORTS
312
+ StatusCode, Position, Ver FROM ULP-Components
313
+ Ver2-SUPL-END-extension FROM ULP-Version-2-message-extensions;
314
+
315
+ SUPLEND ::= SEQUENCE {
316
+ position Position OPTIONAL,
317
+ statusCode StatusCode OPTIONAL,
318
+ ver Ver OPTIONAL,
319
+ ...,
320
+ -- version 2 extension element
321
+ ver2-SUPL-END-extension Ver2-SUPL-END-extension OPTIONAL
322
+ }
323
+
324
+ END
325
+
326
+
327
+ SUPL-AUTH-REQ DEFINITIONS AUTOMATIC TAGS ::= BEGIN
328
+
329
+ EXPORTS SUPLAUTHREQ;
330
+
331
+ IMPORTS
332
+ Ver FROM ULP-Components
333
+ SETCapabilities FROM SUPL-START;
334
+
335
+ SUPLAUTHREQ ::= SEQUENCE {
336
+ ver Ver OPTIONAL,
337
+ sETCapabilities SETCapabilities OPTIONAL,
338
+ ...
339
+ }
340
+
341
+ END
342
+
343
+
344
+ SUPL-AUTH-RESP DEFINITIONS AUTOMATIC TAGS ::= BEGIN
345
+
346
+ EXPORTS SUPLAUTHRESP;
347
+
348
+ IMPORTS
349
+ SPCSETKey, SPCTID, SPCSETKeylifetime FROM Ver2-ULP-Components;
350
+
351
+ SUPLAUTHRESP ::= SEQUENCE {
352
+ sPCSETKey SPCSETKey,
353
+ spctid SPCTID,
354
+ sPCSETKeylifetime SPCSETKeylifetime OPTIONAL,
355
+ ...
356
+ }
357
+
358
+ END
359
+
360
+
361
+ SUPL-NOTIFY DEFINITIONS AUTOMATIC TAGS ::= BEGIN
362
+
363
+ EXPORTS Ver2-SUPLNOTIFY;
364
+
365
+ IMPORTS
366
+ Notification FROM SUPL-INIT;
367
+
368
+ Ver2-SUPLNOTIFY ::= SEQUENCE {
369
+ notification Notification,
370
+ ...
371
+ }
372
+
373
+ END
374
+
375
+
376
+ SUPL-NOTIFY-RESPONSE DEFINITIONS AUTOMATIC TAGS ::= BEGIN
377
+
378
+ EXPORTS Ver2-SUPLNOTIFYRESPONSE;
379
+
380
+ Ver2-SUPLNOTIFYRESPONSE ::= SEQUENCE {
381
+ notificationResponse NotificationResponse OPTIONAL,
382
+ ...
383
+ }
384
+
385
+ NotificationResponse ::= ENUMERATED {allowed(0), notAllowed(1), ...}
386
+
387
+ END
388
+
389
+
390
+ SUPL-SET-INIT DEFINITIONS AUTOMATIC TAGS ::= BEGIN
391
+
392
+ EXPORTS Ver2-SUPLSETINIT;
393
+
394
+ IMPORTS
395
+ SETId, QoP FROM ULP-Components
396
+ ApplicationID FROM Ver2-ULP-Components;
397
+
398
+ Ver2-SUPLSETINIT ::= SEQUENCE {
399
+ targetSETID SETId, --Target SETid identifies the target SET to be located
400
+ qoP QoP OPTIONAL,
401
+ applicationID ApplicationID OPTIONAL,
402
+ ...
403
+ }
404
+
405
+ END
406
+
407
+
408
+ SUPL-TRIGGERED-START DEFINITIONS AUTOMATIC TAGS ::= BEGIN
409
+
410
+ EXPORTS Ver2-SUPLTRIGGEREDSTART, TriggerType, TriggerParams, maxNumGeoArea, maxAreaId, maxAreaIdList;
411
+
412
+ IMPORTS
413
+ LocationId, QoP, Ver, Position FROM ULP-Components
414
+ MultipleLocationIds, CauseCode, ThirdParty, ApplicationID, ReportingCap, Coordinate, CircularArea, EllipticalArea, PolygonArea FROM Ver2-ULP-Components
415
+ SETCapabilities FROM SUPL-START;
416
+
417
+ Ver2-SUPLTRIGGEREDSTART ::= SEQUENCE {
418
+ sETCapabilities SETCapabilities,
419
+ locationId LocationId,
420
+ ver Ver OPTIONAL,
421
+ qoP QoP OPTIONAL,
422
+ multipleLocationIds MultipleLocationIds OPTIONAL,
423
+ thirdParty ThirdParty OPTIONAL,
424
+ applicationID ApplicationID OPTIONAL,
425
+ triggerType TriggerType OPTIONAL,
426
+ triggerParams TriggerParams OPTIONAL,
427
+ position Position OPTIONAL,
428
+ reportingCap ReportingCap OPTIONAL,
429
+ causeCode CauseCode OPTIONAL,
430
+ ...
431
+ }
432
+
433
+ TriggerType ::= ENUMERATED {
434
+ periodic(0),
435
+ areaEvent(1),
436
+ ...
437
+ }
438
+
439
+ TriggerParams ::= CHOICE {
440
+ periodicParams PeriodicParams,
441
+ areaEventParams AreaEventParams,
442
+ ...
443
+ }
444
+
445
+ PeriodicParams ::= SEQUENCE{
446
+ numberOfFixes INTEGER(1.. 8639999),
447
+ intervalBetweenFixes INTEGER(1.. 8639999),
448
+ startTime INTEGER(0..2678400) OPTIONAL,
449
+ ...
450
+ }
451
+ -- intervalBetweenFixes and startTime are in seconds.
452
+ -- numberOfFixes * intervalBetweenFixes shall not exceed 8639999
453
+ -- (100 days in seconds) for compatibility with OMA MLP and RLP
454
+ -- startTime is in relative time in units of seconds measured from "now"
455
+ -- a value of 0 signifies "now", a value of "startTime" signifies startTime
456
+ -- seconds from "now"
457
+
458
+ AreaEventParams ::= SEQUENCE {
459
+ areaEventType AreaEventType,
460
+ locationEstimate BOOLEAN,
461
+ repeatedReportingParams RepeatedReportingParams OPTIONAL,
462
+ startTime INTEGER(0..2678400) OPTIONAL,
463
+ stopTime INTEGER(0..11318399) OPTIONAL,
464
+ geographicTargetAreaList GeographicTargetAreaList OPTIONAL,
465
+ areaIdLists SEQUENCE (SIZE (1..maxAreaIdList)) OF AreaIdList OPTIONAL,
466
+ ...
467
+ }
468
+
469
+ -- startTime and stopTime are in seconds.
470
+ -- startTime and stop Time are in relative time in units of seconds measured
471
+ -- from "now"
472
+ -- a value of 0 signifies "now"
473
+ -- stopTime must be > startTime
474
+ -- stopTime - startTime shall not exceed 8639999
475
+ -- (100 days in seconds) for compatibility with OMA MLP and RLP
476
+
477
+ AreaEventType ::= ENUMERATED {
478
+ enteringArea(0),
479
+ insideArea(1),
480
+ outsideArea(2),
481
+ leavingArea(3),
482
+ ...
483
+ }
484
+
485
+ RepeatedReportingParams ::= SEQUENCE {
486
+ minimumIntervalTime INTEGER (1..604800), -- time in seconds
487
+ maximumNumberOfReports INTEGER (1..1024),
488
+ ...
489
+ }
490
+
491
+ GeographicTargetAreaList ::= SEQUENCE (SIZE (1..maxNumGeoArea)) OF GeographicTargetArea
492
+
493
+ GeographicTargetArea ::= CHOICE {
494
+ circularArea CircularArea,
495
+ ellipticalArea EllipticalArea,
496
+ polygonArea PolygonArea,
497
+ ...
498
+ }
499
+
500
+ AreaIdList ::= SEQUENCE {
501
+ areaIdSet AreaIdSet,
502
+ areaIdSetType AreaIdSetType OPTIONAL,
503
+ geoAreaMappingList GeoAreaMappingList OPTIONAL
504
+ }
505
+
506
+ AreaIdSet ::= SEQUENCE SIZE (1..maxAreaId) OF AreaId
507
+
508
+ AreaId ::= CHOICE {
509
+ gSMAreaId GSMAreaId,
510
+ wCDMAAreaId WCDMAAreaId, -- For TD-SCDMA networks, this parameter indicates a TD-SCDMA Area ID
511
+ cDMAAreaId CDMAAreaId,
512
+ hRPDAreaId HRPDAreaId,
513
+ uMBAreaId UMBAreaId,
514
+ lTEAreaId LTEAreaId,
515
+ wLANAreaId WLANAreaId,
516
+ wiMAXAreaId WimaxAreaId,
517
+ ...,
518
+ nRAreaId NRAreaId
519
+ }
520
+
521
+ GSMAreaId ::= SEQUENCE {
522
+ refMCC INTEGER(0..999) OPTIONAL, -- Mobile Country Code
523
+ refMNC INTEGER(0..999) OPTIONAL, -- Mobile Network Code
524
+ refLAC INTEGER(0..65535) OPTIONAL, -- Location Area Code
525
+ refCI INTEGER(0..65535) OPTIONAL, -- Cell Id
526
+ ...
527
+ }
528
+ -- only one of the following four combinations are allowed: (1) refMCC, (2) refMCC+refMNC, (3) refMCC+refMNC+refLAC or (4) refMCC+refMNC+refLAC+refCI
529
+
530
+ WCDMAAreaId ::= SEQUENCE {
531
+ refMCC INTEGER(0..999) OPTIONAL, -- Mobile Country Code
532
+ refMNC INTEGER(0..999) OPTIONAL, -- Mobile Network Code
533
+ refLAC INTEGER(0..65535) OPTIONAL, -- Location Area Code
534
+ refUC INTEGER(0..268435455) OPTIONAL, -- Cell identity
535
+ ...
536
+ }
537
+ -- only one of the following four combinations are allowed: (1) refMCC, (2) refMCC+refMNC, (3) refMCC+refMNC+refLAC, or (4) refMCC+refMNC+refLAC+refUC
538
+
539
+ CDMAAreaId::= SEQUENCE {
540
+ refSID INTEGER(0..65535) OPTIONAL, -- System Id
541
+ refNID INTEGER(0..32767) OPTIONAL, -- Network Id
542
+ refBASEID INTEGER(0..65535) OPTIONAL, -- Base Station Id
543
+ ...
544
+ }
545
+ -- only one of the following three combinations are allowed: (1) refSID, (2) refSID+refNID, or (3) refSID+refNID+refBASEID
546
+
547
+ HRPDAreaId::= SEQUENCE {
548
+ refSECTORID BIT STRING(SIZE (128)), -- HRPD Sector Id
549
+ ...
550
+ }
551
+
552
+ UMBAreaId::= SEQUENCE {
553
+ refMCC INTEGER(0..999) OPTIONAL, -- Mobile Country Code
554
+ refMNC INTEGER(0..999) OPTIONAL, -- Mobile Network Code
555
+ refSECTORID BIT STRING(SIZE (128)) OPTIONAL, -- UMB Sector Id
556
+ ...
557
+ }
558
+
559
+ LTEAreaId::= SEQUENCE {
560
+ refMCC INTEGER(0..999) OPTIONAL, -- Mobile Country Code
561
+ refMNC INTEGER(0..999) OPTIONAL, -- Mobile Network Code
562
+ refCI BIT STRING(SIZE (29)) OPTIONAL, -- LTE Cell-Id
563
+ ...
564
+ }
565
+ -- only one of the following three combinations are allowed: (1) refMCC, (2) refMCC+refMNC, or (3) refMCC+refMNC+refCI
566
+ -- The LTE Cell-Id is encoded in the 28 Least Significant Bits of refCI
567
+ -- The Most Significant Bit of refCI shall be ignored
568
+
569
+ WLANAreaId::= SEQUENCE {
570
+ apMACAddress BIT STRING(SIZE (48)), -- AP MAC Address
571
+ ...
572
+ }
573
+
574
+ WimaxAreaId ::= SEQUENCE {
575
+ bsID-MSB BIT STRING (SIZE(24)) OPTIONAL,
576
+ bsID-LSB BIT STRING (SIZE(24))
577
+ }
578
+ -- if only LSB is present, MSB is assumed to be identical to the current serving BS or clamped on network value
579
+
580
+ NRAreaId ::= SEQUENCE {
581
+ refMCC INTEGER(0..999) OPTIONAL, -- Mobile Country Code
582
+ refMNC INTEGER(0..999) OPTIONAL, -- Mobile Network Code
583
+ refCI BIT STRING(SIZE (36)) OPTIONAL, -- NR Cell-Id
584
+ ...
585
+ }
586
+ -- only one of the following three combinations are allowed: (1) refMCC, (2)
587
+ -- refMCC+refMNC, or (3) refMCC+refMNC+refCI
588
+
589
+ AreaIdSetType ::= ENUMERATED {
590
+ border(0),
591
+ within(1),
592
+ ...
593
+ }
594
+
595
+ GeoAreaMappingList ::= SEQUENCE (SIZE (1..maxNumGeoArea)) OF GeoAreaIndex
596
+
597
+ GeoAreaIndex ::= INTEGER (1..maxNumGeoArea)
598
+
599
+ maxNumGeoArea INTEGER ::= 32
600
+
601
+ maxAreaId INTEGER ::= 256
602
+
603
+ maxAreaIdList INTEGER ::= 32
604
+
605
+ END
606
+
607
+
608
+ SUPL-TRIGGERED-RESPONSE DEFINITIONS AUTOMATIC TAGS ::= BEGIN
609
+
610
+ EXPORTS Ver2-SUPLTRIGGEREDRESPONSE;
611
+
612
+ IMPORTS
613
+ PosMethod, SLPAddress FROM ULP-Components
614
+ SupportedNetworkInformation, SPCSETKey, SPCTID, SPCSETKeylifetime, GNSSPosTechnology FROM Ver2-ULP-Components
615
+ TriggerParams FROM SUPL-TRIGGERED-START;
616
+
617
+ Ver2-SUPLTRIGGEREDRESPONSE::= SEQUENCE{
618
+ posMethod PosMethod,
619
+ triggerParams TriggerParams OPTIONAL,
620
+ sLPAddress SLPAddress OPTIONAL,
621
+ supportedNetworkInformation SupportedNetworkInformation OPTIONAL,
622
+ reportingMode ReportingMode OPTIONAL,
623
+ sPCSETKey SPCSETKey OPTIONAL,
624
+ spctid SPCTID OPTIONAL,
625
+ sPCSETKeylifetime SPCSETKeylifetime OPTIONAL,
626
+ gnssPosTechnology GNSSPosTechnology OPTIONAL,
627
+ ...
628
+ }
629
+
630
+ ReportingMode ::= SEQUENCE {
631
+ repMode RepModee,
632
+ batchRepConditions BatchRepConditions OPTIONAL, -- only used for batch reporting
633
+ batchRepType BatchRepType OPTIONAL, -- only used for batch reporting
634
+ ...
635
+ }
636
+
637
+ RepModee ::= ENUMERATED {
638
+ realtime(1),
639
+ quasirealtime(2),
640
+ batch(3),
641
+ ...
642
+ }
643
+
644
+ BatchRepConditions ::= CHOICE {
645
+ num-interval INTEGER (1..1024), -- number of periodic fixes/measurements after which the batch report is sent to the SLP
646
+ num-minutes INTEGER (1..2048), -- number of minutes after which the batch report is sent to the SLP
647
+ endofsession NULL, -- if selected batch report is to be sent at the end of the session
648
+ ...
649
+ }
650
+
651
+ BatchRepType ::= SEQUENCE {
652
+ reportPosition BOOLEAN, -- set to "true" if reporting of position is allowed
653
+ reportMeasurements BOOLEAN, -- set to "true" if reporting of measurements is allowed
654
+ intermediateReports BOOLEAN, -- set to "true" if the SET is allowed to send intermediate reports if it runs out of memory
655
+ discardOldest BOOLEAN OPTIONAL, -- set to "true" if the SET should discard the oldest positions or measurements of the batch report in order to save memory, set to "false" the SET should discard the latest positions or measurements
656
+ ...
657
+ }
658
+
659
+ END
660
+
661
+
662
+ SUPL-REPORT DEFINITIONS AUTOMATIC TAGS ::= BEGIN
663
+
664
+ EXPORTS Ver2-SUPLREPORT;
665
+
666
+ IMPORTS
667
+ SETCapabilities FROM SUPL-START
668
+ Position, PosMethod, SessionID, Ver FROM ULP-Components
669
+ MultipleLocationIds, GNSSPosTechnology, GANSSSignals FROM Ver2-ULP-Components
670
+ maxGANSS FROM ULP-Version-2-parameter-extensions;
671
+
672
+ Ver2-SUPLREPORT ::= SEQUENCE {
673
+ sessionList SessionList OPTIONAL,
674
+ sETCapabilities SETCapabilities OPTIONAL,
675
+ reportDataList ReportDataList OPTIONAL,
676
+ ver Ver OPTIONAL,
677
+ moreComponents NULL OPTIONAL,
678
+ ...
679
+ }
680
+
681
+ SessionList ::= SEQUENCE SIZE (1..maxnumSessions) OF SessionInformation
682
+
683
+ SessionInformation ::= SEQUENCE {
684
+ sessionID SessionID,
685
+ ...
686
+ }
687
+
688
+ maxnumSessions INTEGER ::= 64
689
+
690
+ ReportDataList ::= SEQUENCE SIZE (1.. 1024) OF ReportData
691
+
692
+ ReportData ::= SEQUENCE {
693
+ positionData PositionData OPTIONAL,
694
+ multipleLocationIds MultipleLocationIds OPTIONAL,
695
+ resultCode ResultCode OPTIONAL,
696
+ timestamp TimeStamp OPTIONAL,
697
+ ...
698
+ }
699
+
700
+ PositionData ::= SEQUENCE {
701
+ position Position,
702
+ posMethod PosMethod OPTIONAL,
703
+ gnssPosTechnology GNSSPosTechnology OPTIONAL,
704
+ ganssSignalsInfo GANSSsignalsInfo OPTIONAL,
705
+ ...
706
+ }
707
+
708
+ GANSSsignalsInfo ::= SEQUENCE SIZE (1..maxGANSS) OF GANSSSignalsDescription
709
+
710
+ GANSSSignalsDescription ::= SEQUENCE {
711
+ ganssId INTEGER(0..15), -- coding according to parameter definition in section 10.10
712
+ gANSSSignals GANSSSignals,
713
+ ...
714
+ }
715
+
716
+ ResultCode ::= ENUMERATED {
717
+ outofradiocoverage(1),
718
+ noposition(2),
719
+ nomeasurement(3),
720
+ nopositionnomeasurement(4),
721
+ outofmemory(5),
722
+ outofmemoryintermediatereporting(6),
723
+ other(7),
724
+ ...
725
+ }
726
+
727
+ TimeStamp ::= CHOICE {
728
+ absoluteTime UTCTime,
729
+ relativeTime INTEGER (0..31536000)
730
+ } -- relative time to when the SUPL REPORT message is sent in units of 1 sec, where 0 signifies "now" and n signifies n seconds in the past
731
+
732
+ END
733
+
734
+
735
+ SUPL-TRIGGERED-STOP DEFINITIONS AUTOMATIC TAGS ::= BEGIN
736
+
737
+ EXPORTS Ver2-SUPLTRIGGEREDSTOP;
738
+
739
+ IMPORTS
740
+ StatusCode FROM ULP-Components;
741
+
742
+ Ver2-SUPLTRIGGEREDSTOP::= SEQUENCE{
743
+ statusCode StatusCode OPTIONAL,
744
+ ...
745
+ }
746
+
747
+ END
748
+
749
+
750
+ ULP-Version-2-message-extensions DEFINITIONS AUTOMATIC TAGS ::= BEGIN
751
+
752
+ EXPORTS
753
+ Ver2-SUPL-INIT-extension, Ver2-SUPL-START-extension, Ver2-SUPL-RESPONSE-extension, Ver2-SUPL-POS-INIT-extension, Ver2-SUPL-POS-extension, Ver2-SUPL-END-extension;
754
+
755
+ IMPORTS
756
+ SLPAddress, Position, Ver
757
+ FROM ULP-Components
758
+ SETCapabilities FROM SUPL-START
759
+ SupportedNetworkInformation, GNSSPosTechnology, MultipleLocationIds, UTRAN-GPSReferenceTimeResult, UTRAN-GANSSReferenceTimeResult, UTRAN-GPSReferenceTimeAssistance, UTRAN-GANSSReferenceTimeAssistance, SPCSETKey, SPCTID, SPCSETKeylifetime, ThirdParty, ApplicationID
760
+ FROM Ver2-ULP-Components TriggerType
761
+ FROM SUPL-TRIGGERED-START
762
+ Ver2-HighAccuracyPosition FROM Ver2-ULP-Components;
763
+
764
+ Ver2-SUPL-INIT-extension ::= SEQUENCE {
765
+ notificationMode NotificationMode OPTIONAL,
766
+ supportedNetworkInformation SupportedNetworkInformation OPTIONAL,
767
+ triggerType TriggerType OPTIONAL,
768
+ e-SLPAddress SLPAddress OPTIONAL,
769
+ historicReporting HistoricReporting OPTIONAL,
770
+ protectionLevel ProtectionLevel OPTIONAL,
771
+ gnssPosTechnology GNSSPosTechnology OPTIONAL,
772
+ minimumMajorVersion INTEGER (0..255) OPTIONAL,
773
+ ...
774
+ }
775
+
776
+ NotificationMode ::= ENUMERATED {normal(0), basedOnLocation(1), ...}
777
+
778
+ HistoricReporting ::= SEQUENCE {
779
+ allowedReportingType AllowedReportingType,
780
+ reportingCriteria ReportingCriteria OPTIONAL,
781
+ ...
782
+ }
783
+
784
+ AllowedReportingType ::= ENUMERATED {
785
+ positionsOnly(0), measurementsOnly(1), positionsAndMeasurements(2),
786
+ ...
787
+ }
788
+
789
+ ReportingCriteria ::= SEQUENCE {
790
+ timeWindow TimeWindow OPTIONAL,
791
+ maxNumberofReports INTEGER(1..65536) OPTIONAL,
792
+ minTimeInterval INTEGER(1..86400) OPTIONAL,
793
+ ...
794
+ }
795
+
796
+ TimeWindow ::= SEQUENCE {
797
+ startTime INTEGER(-525600..-1), -- Time in minutes
798
+ stopTime INTEGER(-525599..0) -- Time in minutes
799
+ }
800
+
801
+ ProtectionLevel ::= SEQUENCE {
802
+ protlevel ProtLevel,
803
+ basicProtectionParams BasicProtectionParams OPTIONAL,
804
+ ...
805
+ }
806
+
807
+ ProtLevel ::= ENUMERATED { nullProtection(0), basicProtection(1), ...}
808
+
809
+ BasicProtectionParams ::= SEQUENCE {
810
+ keyIdentifier OCTET STRING(SIZE (8)),
811
+ basicReplayCounter INTEGER(0..65535),
812
+ basicMAC BIT STRING(SIZE (32)),
813
+ ...
814
+ }
815
+
816
+ Ver2-SUPL-START-extension ::= SEQUENCE {
817
+ multipleLocationIds MultipleLocationIds OPTIONAL,
818
+ thirdParty ThirdParty OPTIONAL,
819
+ applicationID ApplicationID OPTIONAL,
820
+ position Position OPTIONAL,
821
+ ...
822
+ }
823
+
824
+ Ver2-SUPL-RESPONSE-extension ::= SEQUENCE {
825
+ supportedNetworkInformation SupportedNetworkInformation OPTIONAL,
826
+ sPCSETKey SPCSETKey OPTIONAL,
827
+ spctid SPCTID OPTIONAL,
828
+ sPCSETKeylifetime SPCSETKeylifetime OPTIONAL,
829
+ initialApproximateposition Position OPTIONAL,
830
+ gnssPosTechnology GNSSPosTechnology OPTIONAL,
831
+ ...
832
+ }
833
+
834
+ Ver2-SUPL-POS-INIT-extension ::= SEQUENCE {
835
+ multipleLocationIds MultipleLocationIds OPTIONAL,
836
+ utran-GPSReferenceTimeResult UTRAN-GPSReferenceTimeResult OPTIONAL,
837
+ utran-GANSSReferenceTimeResult UTRAN-GANSSReferenceTimeResult OPTIONAL,
838
+ ...,
839
+ servingAMF AMF-Identifier OPTIONAL
840
+ }
841
+
842
+ AMF-Identifier ::= SEQUENCE {
843
+ amf-Region-ID BIT STRING (SIZE (8)),
844
+ amf-Set-ID BIT STRING (SIZE (10)),
845
+ amf-Pointer BIT STRING (SIZE (6))
846
+ }
847
+
848
+ Ver2-SUPL-POS-extension ::= SEQUENCE {
849
+ utran-GPSReferenceTimeAssistance UTRAN-GPSReferenceTimeAssistance OPTIONAL,
850
+ utran-GPSReferenceTimeResult UTRAN-GPSReferenceTimeResult OPTIONAL,
851
+ utran-GANSSReferenceTimeAssistance UTRAN-GANSSReferenceTimeAssistance OPTIONAL,
852
+ utran-GANSSReferenceTimeResult UTRAN-GANSSReferenceTimeResult OPTIONAL,
853
+ ...
854
+ }
855
+
856
+ Ver2-SUPL-END-extension ::= SEQUENCE {
857
+ sETCapabilities SETCapabilities OPTIONAL,
858
+ ...,
859
+ ver2-HighAccuracyPosition Ver2-HighAccuracyPosition OPTIONAL
860
+ }
861
+
862
+ END
863
+
864
+
865
+ ULP-Version-2-parameter-extensions DEFINITIONS AUTOMATIC TAGS ::= BEGIN
866
+
867
+ EXPORTS
868
+ maxGANSS, Ver2-Notification-extension, Ver2-SETCapabilities-extension, Ver2-PosProtocol-extension, Ver2-PosTechnology-extension, Ver2-RequestedAssistData-extension, Ver2-PosPayLoad-extension;
869
+
870
+ IMPORTS
871
+ GANSSSignals, ReportingCap
872
+ FROM Ver2-ULP-Components
873
+ maxNumGeoArea, maxAreaId, maxAreaIdList FROM SUPL-TRIGGERED-START;
874
+
875
+ Ver2-Notification-extension ::= SEQUENCE {
876
+ emergencyCallLocation NULL OPTIONAL,
877
+ ...
878
+ }
879
+
880
+ Ver2-SETCapabilities-extension ::= SEQUENCE {
881
+ serviceCapabilities ServiceCapabilities OPTIONAL,
882
+ ...,
883
+ supportedBearers SupportedBearers OPTIONAL
884
+ }
885
+
886
+ ServiceCapabilities ::= SEQUENCE {
887
+ servicesSupported ServicesSupported,
888
+ reportingCapabilities ReportingCap OPTIONAL,
889
+ eventTriggerCapabilities EventTriggerCapabilities OPTIONAL,
890
+ sessionCapabilities SessionCapabilities,
891
+ ...
892
+ }
893
+
894
+ ServicesSupported ::= SEQUENCE {
895
+ periodicTrigger BOOLEAN,
896
+ areaEventTrigger BOOLEAN,
897
+ ...
898
+ }
899
+
900
+ EventTriggerCapabilities ::= SEQUENCE {
901
+ geoAreaShapesSupported GeoAreaShapesSupported,
902
+ maxNumGeoAreaSupported INTEGER (0..maxNumGeoArea) OPTIONAL,
903
+ maxAreaIdListSupported INTEGER (0..maxAreaIdList) OPTIONAL,
904
+ maxAreaIdSupportedPerList INTEGER (0..maxAreaId) OPTIONAL,
905
+ ...
906
+ }
907
+
908
+ GeoAreaShapesSupported ::= SEQUENCE {
909
+ ellipticalArea BOOLEAN,
910
+ polygonArea BOOLEAN,
911
+ ...
912
+ }
913
+
914
+ SessionCapabilities ::= SEQUENCE {
915
+ maxNumberTotalSessions INTEGER (1..128),
916
+ maxNumberPeriodicSessions INTEGER (1..32),
917
+ maxNumberTriggeredSessions INTEGER (1..32),
918
+ ...
919
+ }
920
+
921
+ SupportedBearers ::= SEQUENCE {
922
+ gsm BOOLEAN,
923
+ wcdma BOOLEAN,
924
+ lte BOOLEAN,
925
+ cdma BOOLEAN,
926
+ hprd BOOLEAN,
927
+ umb BOOLEAN,
928
+ wlan BOOLEAN,
929
+ wiMAX BOOLEAN,
930
+ ...,
931
+ nr BOOLEAN OPTIONAL
932
+ }
933
+
934
+ Ver2-PosProtocol-extension ::= SEQUENCE {
935
+ lpp BOOLEAN,
936
+ posProtocolVersionRRLP PosProtocolVersion3GPP OPTIONAL,
937
+ posProtocolVersionRRC PosProtocolVersion3GPP OPTIONAL,
938
+ posProtocolVersionTIA801 PosProtocolVersion3GPP2 OPTIONAL,
939
+ posProtocolVersionLPP PosProtocolVersion3GPP OPTIONAL,
940
+ ...,
941
+ lppe BOOLEAN OPTIONAL,
942
+ posProtocolVersionLPPe PosProtocolVersionOMA OPTIONAL
943
+ }
944
+
945
+ PosProtocolVersion3GPP ::= SEQUENCE {
946
+ majorVersionField INTEGER(0..255),
947
+ technicalVersionField INTEGER(0..255),
948
+ editorialVersionField INTEGER(0..255),
949
+ ...
950
+ }
951
+
952
+ PosProtocolVersion3GPP2 ::= SEQUENCE (SIZE(1..8)) OF Supported3GPP2PosProtocolVersion
953
+
954
+ Supported3GPP2PosProtocolVersion ::= SEQUENCE {
955
+ revisionNumber BIT STRING(SIZE (6)), -- the location standard revision number the SET supports coded according to 3GPP2 C.S0022
956
+ pointReleaseNumber INTEGER(0..255),
957
+ internalEditLevel INTEGER(0..255),
958
+ ...
959
+ }
960
+
961
+ PosProtocolVersionOMA ::= SEQUENCE {
962
+ majorVersionField INTEGER(0..255),
963
+ minorVersionField INTEGER(0..255),
964
+ ...
965
+ }
966
+
967
+ Ver2-PosTechnology-extension ::= SEQUENCE {
968
+ gANSSPositionMethods GANSSPositionMethods OPTIONAL,
969
+ ...,
970
+ additionalPositioningMethods AdditionalPositioningMethods OPTIONAL
971
+ }
972
+
973
+ GANSSPositionMethods ::= SEQUENCE (SIZE(1..16)) OF GANSSPositionMethod
974
+
975
+ GANSSPositionMethod ::= SEQUENCE {
976
+ ganssId INTEGER(0..15), -- coding according to parameter definition in section 10.10
977
+ ganssSBASid BIT STRING(SIZE(3)) OPTIONAL, --coding according to parameter definition in section 10.10
978
+ gANSSPositioningMethodTypes GANSSPositioningMethodTypes,
979
+ gANSSSignals GANSSSignals,
980
+ ...,
981
+ rtk RTK OPTIONAL
982
+ }
983
+
984
+ RTK ::= SEQUENCE {osr BOOLEAN, ...}
985
+
986
+ GANSSPositioningMethodTypes ::= SEQUENCE {
987
+ setAssisted BOOLEAN,
988
+ setBased BOOLEAN,
989
+ autonomous BOOLEAN,
990
+ ...
991
+ }
992
+
993
+ AdditionalPositioningMethods ::= SEQUENCE (SIZE(1..8)) OF AddPosSupport-Element
994
+
995
+ AddPosSupport-Element ::= SEQUENCE {
996
+ addPosID ENUMERATED {
997
+ mBS,
998
+ ...,
999
+ nr-DL-TDOA, nr-DL-AoD,
1000
+ nr-Multi-RTT, nr-DL-E-CID, nr-UL-TDOA,
1001
+ nr-UL-AoA
1002
+ },
1003
+ addPosMode BIT STRING {
1004
+ standalone (0),
1005
+ setBased (1),
1006
+ setAssisted (2)
1007
+ } (SIZE (1..8)) OPTIONAL,
1008
+ ...
1009
+ }
1010
+
1011
+ Ver2-RequestedAssistData-extension ::= SEQUENCE {
1012
+ ganssRequestedCommonAssistanceDataList
1013
+ GanssRequestedCommonAssistanceDataList OPTIONAL,
1014
+ ganssRequestedGenericAssistanceDataList
1015
+ GanssRequestedGenericAssistanceDataList OPTIONAL,
1016
+ extendedEphemeris ExtendedEphemeris OPTIONAL,
1017
+ extendedEphemerisCheck ExtendedEphCheck OPTIONAL,
1018
+ ...
1019
+ }
1020
+
1021
+ GanssRequestedCommonAssistanceDataList ::= SEQUENCE {
1022
+ ganssReferenceTime BOOLEAN,
1023
+ ganssIonosphericModel BOOLEAN,
1024
+ ganssAdditionalIonosphericModelForDataID00 BOOLEAN,
1025
+ ganssAdditionalIonosphericModelForDataID11 BOOLEAN,
1026
+ ganssEarthOrientationParameters BOOLEAN,
1027
+ ...,
1028
+ ganssAdditionalIonosphericModelForDataID01 BOOLEAN OPTIONAL
1029
+ }
1030
+
1031
+ GanssRequestedGenericAssistanceDataList ::= SEQUENCE(SIZE(1..maxGANSS)) OF GanssReqGenericData
1032
+
1033
+ GanssReqGenericData ::= SEQUENCE {
1034
+ ganssId INTEGER(0..15), -- coding according to parameter definition in section 10.10
1035
+ ganssSBASid BIT STRING(SIZE(3)) OPTIONAL, --coding according to parameter definition in section 10.10
1036
+ ganssRealTimeIntegrity BOOLEAN,
1037
+ ganssDifferentialCorrection DGANSS-Sig-Id-Req OPTIONAL,
1038
+ ganssAlmanac BOOLEAN,
1039
+ ganssNavigationModelData GanssNavigationModelData OPTIONAL,
1040
+ ganssTimeModels BIT STRING(SIZE(16)) OPTIONAL,
1041
+ ganssReferenceMeasurementInfo BOOLEAN,
1042
+ ganssDataBits GanssDataBits OPTIONAL,
1043
+ ganssUTCModel BOOLEAN,
1044
+ ganssAdditionalDataChoices GanssAdditionalDataChoices OPTIONAL,
1045
+ ganssAuxiliaryInformation BOOLEAN,
1046
+ ganssExtendedEphemeris ExtendedEphemeris OPTIONAL,
1047
+ ganssExtendedEphemerisCheck GanssExtendedEphCheck OPTIONAL,
1048
+ ...,
1049
+ bds-DifferentialCorrection BDS-Sig-Id-Req OPTIONAL,
1050
+ bds-GridModelReq BOOLEAN OPTIONAL
1051
+ }
1052
+
1053
+ DGANSS-Sig-Id-Req ::= BIT STRING (SIZE(8)) -- coding according to parameter definition in section 10.9
1054
+
1055
+ BDS-Sig-Id-Req ::= BIT STRING (SIZE(8)) -- coding according to parameter definition in section 10.9
1056
+
1057
+ GanssNavigationModelData ::= SEQUENCE {
1058
+ ganssWeek INTEGER(0..4095),
1059
+ ganssToe INTEGER(0..167),
1060
+ t-toeLimit INTEGER(0..15),
1061
+ satellitesListRelatedDataList SatellitesListRelatedDataList OPTIONAL,
1062
+ ...
1063
+ }
1064
+
1065
+ SatellitesListRelatedDataList ::= SEQUENCE(SIZE(0..maxGANSSSat)) OF SatellitesListRelatedData
1066
+
1067
+ SatellitesListRelatedData ::= SEQUENCE {
1068
+ satId INTEGER(0..63),
1069
+ iod INTEGER(0..1023),
1070
+ ...
1071
+ }
1072
+
1073
+ maxGANSS INTEGER ::= 16
1074
+
1075
+ maxGANSSSat INTEGER ::= 32
1076
+
1077
+ GanssDataBits ::= SEQUENCE {
1078
+ ganssTODmin INTEGER (0..59),
1079
+ reqDataBitAssistanceList ReqDataBitAssistanceList,
1080
+ ...
1081
+ }
1082
+
1083
+ ReqDataBitAssistanceList ::= SEQUENCE {
1084
+ gnssSignals GANSSSignals,
1085
+ ganssDataBitInterval INTEGER (0..15),
1086
+ ganssDataBitSatList SEQUENCE (SIZE(1..maxGANSSSat)) OF INTEGER (0..63) OPTIONAL,
1087
+ ...
1088
+ }
1089
+
1090
+ GanssAdditionalDataChoices ::= SEQUENCE {
1091
+ orbitModelID INTEGER(0..7) OPTIONAL,
1092
+ clockModelID INTEGER(0..7) OPTIONAL,
1093
+ utcModelID INTEGER(0..7) OPTIONAL,
1094
+ almanacModelID INTEGER(0..7) OPTIONAL,
1095
+ ...
1096
+ }
1097
+
1098
+ ExtendedEphemeris ::= SEQUENCE {
1099
+ validity INTEGER (1..256), -- Requested validity in 4 hour steps
1100
+ ...
1101
+ }
1102
+
1103
+ ExtendedEphCheck ::= SEQUENCE {
1104
+ beginTime GPSTime, -- Begin time of ephemeris extension held by SET
1105
+ endTime GPSTime, -- End time of ephemeris extension held by SET
1106
+ ...
1107
+ }
1108
+
1109
+ GanssExtendedEphCheck ::= SEQUENCE {
1110
+ beginTime GANSSextEphTime, -- Begin time of ephemeris extension held by SET
1111
+ endTime GANSSextEphTime, -- End time of ephemeris extension held by SET
1112
+ ...
1113
+ }
1114
+
1115
+ GPSTime ::= SEQUENCE {
1116
+ gPSWeek INTEGER (0..1023),
1117
+ gPSTOWhour INTEGER (0..167),
1118
+ ...
1119
+ }
1120
+
1121
+ GANSSextEphTime ::= SEQUENCE {
1122
+ gANSSday INTEGER (0..8191),
1123
+ gANSSTODhour INTEGER (0..23),
1124
+ ...
1125
+ }
1126
+
1127
+ Ver2-PosPayLoad-extension ::= SEQUENCE {
1128
+ lPPPayload SEQUENCE (SIZE (1..3)) OF OCTET STRING(SIZE (1..60000)) OPTIONAL,
1129
+ tia801Payload SEQUENCE (SIZE(1..3)) OF OCTET STRING(SIZE (1..60000)) OPTIONAL,
1130
+ ...
1131
+ }
1132
+
1133
+ END
1134
+
1135
+
1136
+ ULP-Components DEFINITIONS AUTOMATIC TAGS ::= BEGIN
1137
+
1138
+ EXPORTS
1139
+ Version, SessionID, IPAddress, SLPAddress, LocationId, Position, StatusCode, Velocity, QoP, PosMethod, Ver, SETId, PrimaryCPICH-Info, CellParametersID, FQDN;
1140
+
1141
+ IMPORTS
1142
+ Ver2-CellInfo-extension FROM Ver2-ULP-Components;
1143
+
1144
+ -- protocol version expressed as x.y.z (e.g., 5.1.0)
1145
+ Version ::= SEQUENCE {
1146
+ maj INTEGER(0..255),
1147
+ min INTEGER(0..255),
1148
+ servind INTEGER(0..255)
1149
+ }
1150
+
1151
+ SessionID ::= SEQUENCE {
1152
+ setSessionID SetSessionID OPTIONAL, -- the semantics of OPTIONAL applies to the encoding only. The parameter itself is MANDATORY. This is introduced only to minimize bandwidth for the SUPL INIT message. Since the setSessionID is allocated by the SET, there is no setSessionID to be transmitted in the SUPL INIT message.
1153
+ slpSessionID SlpSessionID OPTIONAL -- the semantics of OPTIONAL applies to the encoding only. The parameter itself is MANDATORY. This is introduced only to minimize bandwidth for the SUPL START, SUPL TRIGGERED START and SUPL SET INIT messages. Since the slpSessionID is allocated by the SLP, there is no slpSessionID to be transmitted in these messages (with the exception described in section 10.14).
1154
+ }
1155
+
1156
+
1157
+ SetSessionID ::= SEQUENCE {
1158
+ sessionId INTEGER(0..65535),
1159
+ setId SETId
1160
+ }
1161
+
1162
+ SETId ::= CHOICE {
1163
+ msisdn OCTET STRING(SIZE (8)),
1164
+ mdn OCTET STRING(SIZE (8)),
1165
+ min BIT STRING(SIZE (34)), -- coded according to TIA-553
1166
+ imsi OCTET STRING(SIZE (8)),
1167
+ nai IA5String(SIZE (1..1000)),
1168
+ iPAddress IPAddress,
1169
+ ...,
1170
+ ver2-imei OCTET STRING(SIZE(8))
1171
+ }
1172
+ -- msisdn, mnd, imsi and imei are a BCD (Binary Coded Decimal) string
1173
+ -- represent digits from 0 through 9,
1174
+ -- two digits per octet, each digit encoded 0000 to 1001 (0 to 9)
1175
+ -- bits 8765 of octet n encoding digit 2n
1176
+ -- bits 4321 of octet n encoding digit 2(n-1) +1
1177
+ -- not used digits in the string shall be filled with 1111
1178
+ -- imei SHALL NOT be used unless the SLP indicates support for SUPL ver 2.0.3
1179
+ -- or greater
1180
+
1181
+ SlpSessionID ::= SEQUENCE {
1182
+ sessionID OCTET STRING(SIZE (4)),
1183
+ slpId SLPAddress
1184
+ }
1185
+
1186
+ IPAddress ::= CHOICE {
1187
+ ipv4Address OCTET STRING(SIZE (4)),
1188
+ ipv6Address OCTET STRING(SIZE (16))
1189
+ }
1190
+
1191
+ SLPAddress ::= CHOICE {
1192
+ iPAddress IPAddress,
1193
+ fqdn FQDN,
1194
+ ...
1195
+ }
1196
+
1197
+ FQDN ::= VisibleString(FROM ("a".."z" | "A".."Z" | "0".."9" |".-"))(SIZE (1..255))
1198
+
1199
+ Ver ::= BIT STRING(SIZE (64))
1200
+
1201
+ LocationId ::= SEQUENCE {
1202
+ cellInfo CellInfo,
1203
+ status Status,
1204
+ ...
1205
+ }
1206
+
1207
+ Status ::= ENUMERATED {stale(0), current(1), unknown(2), ...}
1208
+
1209
+ CellInfo ::= CHOICE {
1210
+ gsmCell GsmCellInformation,
1211
+ wcdmaCell WcdmaCellInformation, --WCDMA Cell Information/TD-SCDMA Cell Information
1212
+ cdmaCell CdmaCellInformation,
1213
+ ...,
1214
+ ver2-CellInfo-extension Ver2-CellInfo-extension
1215
+ }
1216
+
1217
+ Position ::= SEQUENCE {
1218
+ timestamp UTCTime, -- shall include seconds and shall use UTC time.
1219
+ positionEstimate PositionEstimate,
1220
+ velocity Velocity OPTIONAL,
1221
+ ...
1222
+ }
1223
+
1224
+ PositionEstimate ::= SEQUENCE {
1225
+ latitudeSign ENUMERATED {north, south},
1226
+ atitude INTEGER(0..8388607),
1227
+ longitude INTEGER(-8388608..8388607),
1228
+ uncertainty SEQUENCE {
1229
+ uncertaintySemiMajor INTEGER(0..127),
1230
+ uncertaintySemiMinor INTEGER(0..127),
1231
+ orientationMajorAxis INTEGER(0..180)
1232
+ } OPTIONAL, -- angle in degree between major axis and North
1233
+ confidence INTEGER(0..100) OPTIONAL,
1234
+ altitudeInfo AltitudeInfo OPTIONAL,
1235
+ ...
1236
+ } -- Coding as in [3GPP GAD]
1237
+
1238
+ AltitudeInfo ::= SEQUENCE {
1239
+ altitudeDirection ENUMERATED {height, depth},
1240
+ altitude INTEGER(0..32767),
1241
+ altUncertainty INTEGER(0..127),
1242
+ ...
1243
+ } -- based on [3GPP GAD]
1244
+
1245
+ CdmaCellInformation ::= SEQUENCE {
1246
+ refNID INTEGER(0..65535), -- Network Id
1247
+ refSID INTEGER(0..32767), -- System Id
1248
+ refBASEID INTEGER(0..65535), -- Base Station Id
1249
+ refBASELAT INTEGER(0..4194303), -- Base Station Latitude
1250
+ reBASELONG INTEGER(0..8388607), -- Base Station Longitude
1251
+ refREFPN INTEGER(0..511), -- Base Station PN Code
1252
+ refWeekNumber INTEGER(0..65535), -- GPS Week Number
1253
+ refSeconds INTEGER(0..4194303), -- GPS Seconds
1254
+ ...
1255
+ }
1256
+
1257
+ GsmCellInformation ::= SEQUENCE {
1258
+ refMCC INTEGER(0..999), -- Mobile Country Code
1259
+ refMNC INTEGER(0..999), -- Mobile Network Code
1260
+ refLAC INTEGER(0..65535), -- Location area code
1261
+ refCI INTEGER(0..65535), -- Cell identity
1262
+ nmr NMR OPTIONAL,
1263
+ ta INTEGER(0..255) OPTIONAL, --Timing Advance
1264
+ ...
1265
+ }
1266
+
1267
+ WcdmaCellInformation ::= SEQUENCE {
1268
+ refMCC INTEGER(0..999), -- Mobile Country Code
1269
+ refMNC INTEGER(0..999), -- Mobile Network Code
1270
+ refUC INTEGER(0..268435455), -- Cell identity
1271
+ frequencyInfo FrequencyInfo OPTIONAL,
1272
+ primaryScramblingCode INTEGER(0..511) OPTIONAL, -- Not applicable for TDD
1273
+ measuredResultsList MeasuredResultsList OPTIONAL,
1274
+ ...,
1275
+ cellParametersId INTEGER(0..127) OPTIONAL, -- Not applicable for FDD
1276
+ timingAdvance TimingAdvance OPTIONAL -- Not applicable for FDD
1277
+ }
1278
+
1279
+ TimingAdvance ::= SEQUENCE {
1280
+ ta INTEGER (0..8191),
1281
+ tAResolution TAResolution OPTIONAL, --If missing, resolution is 0.125 chips
1282
+ chipRate ChipRate OPTIONAL, --If missing, chip rate is 1.28 Mchip/s
1283
+ ...
1284
+ }
1285
+
1286
+ TAResolution ::= ENUMERATED {
1287
+ res10chip(0), res05chip(1), res0125chip(2), ...
1288
+ } -- Corresponding to 1.0-chip, 0.5-chip and 0.125-chip resolutions, respectively
1289
+
1290
+ ChipRate ::= ENUMERATED {
1291
+ tdd128(0), tdd384(1), tdd768(2), ...
1292
+ } --Corresponding to 1.28-Mchips/s, 3.84-Mchips/s and 7.68-Mchips/s chip rates, respectively
1293
+
1294
+
1295
+ FrequencyInfo ::= SEQUENCE {
1296
+ modeSpecificInfo CHOICE {
1297
+ fdd FrequencyInfoFDD,
1298
+ tdd FrequencyInfoTDD,
1299
+ ...
1300
+ },
1301
+ ...
1302
+ }
1303
+
1304
+ FrequencyInfoFDD ::= SEQUENCE {
1305
+ uarfcn-UL UARFCN OPTIONAL,
1306
+ uarfcn-DL UARFCN,
1307
+ ...
1308
+ }
1309
+
1310
+ FrequencyInfoTDD ::= SEQUENCE {
1311
+ uarfcn-Nt UARFCN,
1312
+ ...
1313
+ }
1314
+
1315
+ UARFCN ::= INTEGER(0..16383)
1316
+
1317
+ NMR ::= SEQUENCE (SIZE (1..15)) OF NMRelement
1318
+
1319
+ NMRelement ::= SEQUENCE {
1320
+ arfcn INTEGER(0..1023),
1321
+ bsic INTEGER(0..63),
1322
+ rxLev INTEGER(0..63),
1323
+ ...
1324
+ }
1325
+
1326
+ MeasuredResultsList ::= SEQUENCE (SIZE (1..maxFreq)) OF MeasuredResults
1327
+
1328
+ MeasuredResults ::= SEQUENCE {
1329
+ frequencyInfo FrequencyInfo OPTIONAL,
1330
+ utra-CarrierRSSI UTRA-CarrierRSSI OPTIONAL,
1331
+ cellMeasuredResultsList CellMeasuredResultsList OPTIONAL
1332
+ }
1333
+
1334
+ CellMeasuredResultsList ::= SEQUENCE (SIZE (1..maxCellMeas)) OF CellMeasuredResults
1335
+
1336
+ -- SPARE: UTRA-CarrierRSSI, Max = 76
1337
+ -- Values above Max are spare
1338
+ UTRA-CarrierRSSI ::= INTEGER(0..127)
1339
+
1340
+ CellMeasuredResults ::= SEQUENCE {
1341
+ cellIdentity INTEGER(0..268435455) OPTIONAL,
1342
+ modeSpecificInfo CHOICE {
1343
+ fdd SEQUENCE {
1344
+ primaryCPICH-Info PrimaryCPICH-Info,
1345
+ cpich-Ec-N0 CPICH-Ec-N0 OPTIONAL,
1346
+ cpich-RSCP CPICH-RSCP OPTIONAL,
1347
+ pathloss Pathloss OPTIONAL
1348
+ },
1349
+ tdd SEQUENCE {
1350
+ cellParametersID CellParametersID,
1351
+ proposedTGSN TGSN OPTIONAL,
1352
+ primaryCCPCH-RSCP PrimaryCCPCH-RSCP OPTIONAL,
1353
+ pathloss Pathloss OPTIONAL,
1354
+ timeslotISCP-List TimeslotISCP-List OPTIONAL --NOTE: TimeSlotISCP measurement list cannot be interpreted without the knowledge of Cell Info as defined in [3GPP RRC]
1355
+ }
1356
+ }
1357
+ }
1358
+
1359
+ CellParametersID ::= INTEGER(0..127)
1360
+
1361
+ TGSN ::= INTEGER(0..14)
1362
+
1363
+ PrimaryCCPCH-RSCP ::= INTEGER(0..127)
1364
+
1365
+ -- SPARE: TimeslotISCP, Max = 91
1366
+ -- Values above Max are spare
1367
+ TimeslotISCP ::= INTEGER(0..127)
1368
+
1369
+ TimeslotISCP-List ::= SEQUENCE (SIZE (1..maxTS)) OF TimeslotISCP
1370
+
1371
+ PrimaryCPICH-Info ::= SEQUENCE {primaryScramblingCode INTEGER(0..511)}
1372
+
1373
+ -- SPARE: CPICH-Ec-No, Max = 49
1374
+ -- Values above Max are spare
1375
+ CPICH-Ec-N0 ::= INTEGER(0..63)
1376
+
1377
+ -- SPARE: CPICH-RSCP, data range from 0 to 91 and from 123 to 127.
1378
+ -- Values from 92 to 122 are spare
1379
+ -- the encoding of cpich-RSCP is (as per [3GPP RRC] V5.11.0)
1380
+
1381
+ -- cpich-RSCP = 123 CPICH RSCP <-120 dBm
1382
+ -- cpich-RSCP = 124 -120 <= CPICH RSCP < -119 dBm
1383
+ -- cpich-RSCP = 125 -119 <= CPICH RSCP < -118 dBm
1384
+ -- cpich-RSCP = 126 -118 <= CPICH RSCP < -117 dBm
1385
+ -- cpich-RSCP = 127 -117 <= CPICH RSCP < -116 dBm
1386
+ -- cpich-RSCP = 0 -116 <= CPICH RSCP < -115 dBm
1387
+ -- cpich-RSCP = 1 -115 <= CPICH RSCP < -114 dBm
1388
+ -- ...
1389
+ -- cpich-RSCP = 89 -27 <= CPICH RSCP < -26 dBm
1390
+ -- cpich-RSCP = 90 -26 <= CPICH RSCP < -25 dBm
1391
+ -- cpich-RSCP = 91 -25 <= CPICH RSCP dBm
1392
+
1393
+ CPICH-RSCP ::= INTEGER(0..127)
1394
+
1395
+ -- SPARE: Pathloss, Max = 158
1396
+ -- Values above Max are spare
1397
+ Pathloss ::= INTEGER(46..173)
1398
+
1399
+ maxCellMeas INTEGER ::= 32
1400
+
1401
+ maxFreq INTEGER ::= 8
1402
+
1403
+ maxTS INTEGER ::= 14
1404
+
1405
+ StatusCode ::= ENUMERATED {
1406
+ unspecified(0), systemFailure(1), unexpectedMessage(2), protocolError(3),
1407
+ dataMissing(4), unexpectedDataValue(5), posMethodFailure(6), posMethodMismatch(7),
1408
+ posProtocolMismatch(8), targetSETnotReachable(9), versionNotSupported(10),
1409
+ resourceShortage(11), invalidSessionId(12), nonProxyModeNotSupported(13),
1410
+ proxyModeNotSupported(14), positioningNotPermitted(15), authNetFailure(16),
1411
+ authSuplinitFailure(17),
1412
+ consentDeniedByUser(100), consentGrantedByUser(101), ...,
1413
+ ver2-incompatibleProtectionLevel(18), ver2-serviceNotSupported(19),
1414
+ ver2-insufficientInterval(20), ver2-noSUPLCoverage(21),
1415
+ ver2-sessionStopped(102), ver2-appIdDenied(103)
1416
+ }
1417
+
1418
+ QoP ::= SEQUENCE {
1419
+ horacc INTEGER(0..127),
1420
+ veracc INTEGER(0..127) OPTIONAL, -- as defined in [3GPP GAD] "uncertainty altitude"
1421
+ maxLocAge INTEGER(0..65535) OPTIONAL,
1422
+ delay INTEGER(0..7) OPTIONAL, -- as defined in [3GPP RRLP]
1423
+ ...,
1424
+ ver2-responseTime INTEGER (1..128) OPTIONAL
1425
+ }
1426
+
1427
+ Velocity ::= CHOICE { -- velocity definition as per [3GPP GAD]
1428
+ horvel Horvel,
1429
+ horandvervel Horandvervel,
1430
+ horveluncert Horveluncert,
1431
+ horandveruncert Horandveruncert,
1432
+ ...
1433
+ }
1434
+
1435
+ Horvel ::= SEQUENCE {
1436
+ bearing BIT STRING(SIZE (9)),
1437
+ horspeed BIT STRING(SIZE (16)),
1438
+ ...
1439
+ }
1440
+
1441
+ Horandvervel ::= SEQUENCE {
1442
+ verdirect BIT STRING(SIZE (1)),
1443
+ bearing BIT STRING(SIZE (9)),
1444
+ horspeed BIT STRING(SIZE (16)),
1445
+ verspeed BIT STRING(SIZE (8)),
1446
+ ...
1447
+ }
1448
+
1449
+ Horveluncert ::= SEQUENCE {
1450
+ bearing BIT STRING(SIZE (9)),
1451
+ horspeed BIT STRING(SIZE (16)),
1452
+ uncertspeed BIT STRING(SIZE (8)),
1453
+ ...
1454
+ }
1455
+
1456
+ Horandveruncert ::= SEQUENCE {
1457
+ verdirect BIT STRING(SIZE (1)),
1458
+ bearing BIT STRING(SIZE (9)),
1459
+ horspeed BIT STRING(SIZE (16)),
1460
+ verspeed BIT STRING(SIZE (8)),
1461
+ horuncertspeed BIT STRING(SIZE (8)),
1462
+ veruncertspeed BIT STRING(SIZE (8)),
1463
+ ...
1464
+ }
1465
+
1466
+ PosMethod ::= ENUMERATED {
1467
+ agpsSETassisted(0), agpsSETbased(1), agpsSETassistedpref(2),
1468
+ agpsSETbasedpref(3), autonomousGPS(4),
1469
+ aflt(5), ecid(6), eotd(7), otdoa(8), noPosition(9),
1470
+ ...,
1471
+ ver2-historicalDataRetrieval(10), ver2-agnssSETassisted(11),
1472
+ ver2-agnssSETbased(12), ver2-agnssSETassistedpref(13), ver2-agnssSETbasedpref(14),
1473
+ ver2-autonomousGNSS(15), ver2-sessioninfoquery(16), ver2-mbs(17),
1474
+ ver2-NR-DL-TDOA(18), ver2-NR-DL-AoD(19), ver2-NR-Multi-RTT(20),
1475
+ ver2-NR-DL-E-CID(21), ver2-NR-UL-TDOA(22), ver2-NR-UL-AoA(23)
1476
+ }
1477
+
1478
+ END
1479
+
1480
+
1481
+ Ver2-ULP-Components DEFINITIONS AUTOMATIC TAGS ::= BEGIN
1482
+
1483
+ EXPORTS
1484
+ Ver2-CellInfo-extension, MultipleLocationIds, SupportedNetworkInformation, CauseCode, UTRAN-GPSReferenceTimeAssistance, UTRAN-GPSReferenceTimeResult, SPCSETKey, SPCTID, SPCSETKeylifetime, UTRAN-GANSSReferenceTimeAssistance, UTRAN-GANSSReferenceTimeResult, GNSSPosTechnology, GANSSSignals, ThirdParty, ApplicationID, ReportingCap, Coordinate, CircularArea, EllipticalArea, PolygonArea, Ver2-HighAccuracyPosition;
1485
+
1486
+ IMPORTS
1487
+ LocationId, PrimaryCPICH-Info, CellParametersID, FQDN, Velocity FROM ULP-Components;
1488
+
1489
+ MultipleLocationIds ::= SEQUENCE SIZE (1..maxLidSize) OF LocationIdData
1490
+
1491
+ LocationIdData ::= SEQUENCE {
1492
+ locationId LocationId,
1493
+ relativetimestamp RelativeTime OPTIONAL, -- if relativetimestamp is present, then data represents historical measurement, if absent, data represents current measurements
1494
+ servingFlag BOOLEAN, -- if "true" measurements represent serving cell
1495
+ ...
1496
+ }
1497
+
1498
+ RelativeTime ::= INTEGER (0..65535) -- relative time to "current" Location Id in multiples of 0.01sec
1499
+
1500
+ maxLidSize INTEGER ::= 64
1501
+
1502
+ SupportedNetworkInformation ::= SEQUENCE {
1503
+ wlan BOOLEAN,
1504
+ supportedWLANInfo SupportedWLANInfo OPTIONAL,
1505
+ supportedWLANApsList SupportedWLANApsList OPTIONAL,
1506
+ gsm BOOLEAN,
1507
+ wcdma BOOLEAN,
1508
+ supportedWCDMAInfo SupportedWCDMAInfo OPTIONAL,
1509
+ cdma BOOLEAN,
1510
+ hrdp BOOLEAN,
1511
+ umb BOOLEAN,
1512
+ lte BOOLEAN,
1513
+ wimax BOOLEAN,
1514
+ historic BOOLEAN,
1515
+ nonServing BOOLEAN,
1516
+ uTRANGPSReferenceTime BOOLEAN,
1517
+ uTRANGANSSReferenceTime BOOLEAN,
1518
+ ...,
1519
+ nr BOOLEAN OPTIONAL
1520
+ }
1521
+
1522
+ SupportedWLANInfo ::= SEQUENCE {
1523
+ apTP BOOLEAN, -- AP transmit power
1524
+ apAG BOOLEAN, -- AP antenna gain
1525
+ apSN BOOLEAN, -- AP S/N received at SET
1526
+ apDevType BOOLEAN, -- Device type
1527
+ apRSSI BOOLEAN, -- AP signal strength at SET
1528
+ apChanFreq BOOLEAN, -- AP channel/frequency of Tx/Rx
1529
+ apRTD BOOLEAN, -- Round Trip Delay between SET and AP
1530
+ setTP BOOLEAN, -- SET transmit power
1531
+ setAG BOOLEAN, -- SET antenna gain
1532
+ setSN BOOLEAN, -- SET S/N received at AP
1533
+ setRSSI BOOLEAN, -- SET signal strength at AP
1534
+ apRepLoc BOOLEAN, -- AP Location as reported by AP (legacy encoding)
1535
+ ...,
1536
+ apRL BOOLEAN OPTIONAL, -- AP Location as reported by AP (as per IEEE802.11)
1537
+ opClass BOOLEAN OPTIONAL, -- operating class as defined in IEEE 802.11
1538
+ apSSID BOOLEAN OPTIONAL, -- SSID of the wireless network served by AP
1539
+ apPHYType BOOLEAN OPTIONAL, -- AP PHY Type as defined in IEEE 802.11
1540
+ setMACAddress BOOLEAN OPTIONAL -- SET MAC Address as known to the WLAN AP
1541
+ }
1542
+
1543
+ maxWLANApDataSize INTEGER ::= 128
1544
+
1545
+ SupportedWLANApsList ::= SEQUENCE {
1546
+ supportedWLANApDataList SEQUENCE (SIZE (1..maxWLANApDataSize)) OF SupportedWLANApData,
1547
+ supportedWLANapsChannel11a SupportedWLANApsChannel11a OPTIONAL,
1548
+ supportedWLANapsChannel11bg SupportedWLANApsChannel11bg OPTIONAL,
1549
+ ...
1550
+ }
1551
+
1552
+ SupportedWLANApsChannel11a ::= SEQUENCE {
1553
+ ch34 BOOLEAN,
1554
+ ch36 BOOLEAN,
1555
+ ch38 BOOLEAN,
1556
+ ch40 BOOLEAN,
1557
+ ch42 BOOLEAN,
1558
+ ch44 BOOLEAN,
1559
+ ch46 BOOLEAN,
1560
+ ch48 BOOLEAN,
1561
+ ch52 BOOLEAN,
1562
+ ch56 BOOLEAN,
1563
+ ch60 BOOLEAN,
1564
+ ch64 BOOLEAN,
1565
+ ch149 BOOLEAN,
1566
+ ch153 BOOLEAN,
1567
+ ch157 BOOLEAN,
1568
+ ch161 BOOLEAN
1569
+ }
1570
+
1571
+ SupportedWLANApsChannel11bg ::= SEQUENCE {
1572
+ ch1 BOOLEAN,
1573
+ ch2 BOOLEAN,
1574
+ ch3 BOOLEAN,
1575
+ ch4 BOOLEAN,
1576
+ ch5 BOOLEAN,
1577
+ ch6 BOOLEAN,
1578
+ ch7 BOOLEAN,
1579
+ ch8 BOOLEAN,
1580
+ ch9 BOOLEAN,
1581
+ ch10 BOOLEAN,
1582
+ ch11 BOOLEAN,
1583
+ ch12 BOOLEAN,
1584
+ ch13 BOOLEAN,
1585
+ ch14 BOOLEAN
1586
+ }
1587
+
1588
+ SupportedWLANApData ::= SEQUENCE {
1589
+ apMACAddress BIT STRING (SIZE (48)),
1590
+ apDevType ENUMERATED {
1591
+ wlan802-11a(0), wlan802-11b(1), wlan802-11g(2), ...
1592
+ },
1593
+ ...
1594
+ }
1595
+
1596
+ SupportedWCDMAInfo ::= SEQUENCE {
1597
+ mrl BOOLEAN, -- Measured Results List
1598
+ ...
1599
+ }
1600
+
1601
+ Ver2-CellInfo-extension ::= CHOICE {
1602
+ hrpdCell HrpdCellInformation,
1603
+ umbCell UmbCellInformation,
1604
+ lteCell LteCellInformation,
1605
+ wlanAP WlanAPInformation,
1606
+ wimaxBS WimaxBSInformation,
1607
+ ...,
1608
+ nrCell NRCellInformation
1609
+ }
1610
+
1611
+ HrpdCellInformation ::= SEQUENCE {
1612
+ refSECTORID BIT STRING(SIZE (128)) OPTIONAL, -- HRPD Sector Id
1613
+ refBASELAT INTEGER(0..4194303), -- Base Station Latitude
1614
+ reBASELONG INTEGER(0..8388607), -- Base Station Longitude
1615
+ refWeekNumber INTEGER(0..65535), -- GPS Week Number
1616
+ refSeconds INTEGER(0..4194303), -- GPS Seconds
1617
+ ...
1618
+ }
1619
+
1620
+ UmbCellInformation ::= SEQUENCE {
1621
+ refSECTORID BIT STRING(SIZE (128)), -- UMB Sector Id
1622
+ refMCC INTEGER(0..999), -- Mobile Country Code
1623
+ refMNC INTEGER(0..999), -- Mobile Network Code
1624
+ refBASELAT INTEGER(0..4194303), -- Base Station Latitude
1625
+ reBASELONG INTEGER(0..8388607), -- Base Station Longitude
1626
+ refWeekNumber INTEGER(0..65535), -- GPS Week Number
1627
+ refSeconds INTEGER(0..4194303), -- GPS Seconds
1628
+ ...
1629
+ }
1630
+
1631
+ -- LTE Cell info per 3GPP TS 36.331.
1632
+ -- If not otherwise stated info is related to serving cell
1633
+
1634
+ LteCellInformation ::= SEQUENCE {
1635
+ cellGlobalIdEUTRA CellGlobalIdEUTRA,
1636
+ physCellId PhysCellId,
1637
+ trackingAreaCode TrackingAreaCode,
1638
+ rsrpResult RSRP-Range OPTIONAL,
1639
+ rsrqResult RSRQ-Range OPTIONAL,
1640
+ ta INTEGER(0..1282) OPTIONAL, -- Currently used Timing Advance value (N_TA/16 as per [3GPP 36.213])
1641
+ measResultListEUTRA MeasResultListEUTRA OPTIONAL, --Neighbour measurements
1642
+ ...,
1643
+ earfcn INTEGER(0..65535) OPTIONAL, -- see Table 37
1644
+ earfcn-ext INTEGER (65536..262143) OPTIONAL, -- see Table 37
1645
+ rsrpResult-ext RSRP-Range-Ext OPTIONAL,
1646
+ rsrqResult-ext RSRQ-Range-Ext OPTIONAL,
1647
+ rs-sinrResult RS-SINR-Range OPTIONAL,
1648
+ servingInformation5G ServingInformation5G OPTIONAL
1649
+ }
1650
+ -- If rsrpResult-ext is included, rsrpResult shall be excluded or set to 0
1651
+ -- If rsrqResult-ext is included and in the range 0 to 34, rsrqResult shall
1652
+ -- be included and set equal to rsrqResult-ext
1653
+ -- If rsrqResult-ext is included and outside the range 0 to 34, rsrqResult shall
1654
+ -- be excluded or set to 0 when rsrqResult-ext is negative or to 34 when
1655
+ -- rsrqResult-ext is positive
1656
+ -- servingInformation5G shall be included for a serving cell connected to 5GCN
1657
+
1658
+ -- Measured results of neighbours cells per 3GPP TS 36.331
1659
+
1660
+ MeasResultListEUTRA ::= SEQUENCE (SIZE (1..maxCellReport)) OF MeasResultEUTRA
1661
+
1662
+ MeasResultEUTRA ::= SEQUENCE {
1663
+ physCellId PhysCellId,
1664
+ cgi-Info SEQUENCE {
1665
+ cellGlobalId CellGlobalIdEUTRA,
1666
+ trackingAreaCode TrackingAreaCode
1667
+ } OPTIONAL,
1668
+ measResult SEQUENCE {
1669
+ rsrpResult RSRP-Range OPTIONAL, -- Mapping to measured values
1670
+ rsrqResult RSRQ-Range OPTIONAL, -- in 3GPP TS 36.133
1671
+ ...,
1672
+ earfcn INTEGER(0..65535) OPTIONAL, -- see Table 37
1673
+ earfcn-ext INTEGER (65536..262143) OPTIONAL, -- see Table 37
1674
+ rsrpResult-ext RSRP-Range-Ext OPTIONAL,
1675
+ rsrqResult-ext RSRQ-Range-Ext OPTIONAL,
1676
+ rs-sinrResult RS-SINR-Range OPTIONAL,
1677
+ neighbourInformation5G NeighbourInformation5G OPTIONAL
1678
+ }
1679
+ }
1680
+ -- If rsrpResult-ext is included, rsrpResult shall be excluded or set to 0
1681
+ -- If rsrqResult-ext is included and in the range 0 to 34, rsrqResult shall
1682
+ -- be included and set equal to rsrqResult-ext
1683
+ -- If rsrqResult-ext is included and outside the range 0 to 34, rsrqResult shall
1684
+ -- be excluded or set to 0 when rsrqResult-ext is negative or to 34 when
1685
+ -- rsrqResult-ext is positive
1686
+ -- neighbourInformation5G may only be included for a cell connected to 5GCN
1687
+
1688
+ PhysCellId ::= INTEGER (0..503)
1689
+
1690
+ TrackingAreaCode ::= BIT STRING (SIZE (16))
1691
+
1692
+ CellGlobalIdEUTRA ::= SEQUENCE {
1693
+ plmn-Identity PLMN-Identity,
1694
+ cellIdentity CellIdentity,
1695
+ ...
1696
+ }
1697
+
1698
+ PLMN-Identity ::= SEQUENCE {
1699
+ mcc MCC OPTIONAL,
1700
+ mnc MNC
1701
+ }
1702
+
1703
+ CellIdentity ::= BIT STRING (SIZE (28))
1704
+
1705
+ MCC ::= SEQUENCE (SIZE (3)) OF MCC-MNC-Digit
1706
+
1707
+ MNC ::= SEQUENCE (SIZE (2..3)) OF MCC-MNC-Digit
1708
+
1709
+ MCC-MNC-Digit ::= INTEGER (0..9)
1710
+
1711
+ RSRP-Range ::= INTEGER(0..97)
1712
+
1713
+ RSRQ-Range ::= INTEGER(0..34)
1714
+
1715
+ RSRP-Range-Ext ::= INTEGER(-17..-1)
1716
+
1717
+ RSRQ-Range-Ext ::= INTEGER(-30..46)
1718
+
1719
+ RS-SINR-Range ::= INTEGER(0..127)
1720
+
1721
+ ServingInformation5G ::= SEQUENCE {
1722
+ trackingAreaCode TrackingAreaCodeNR,
1723
+ ...
1724
+ }
1725
+
1726
+ NeighbourInformation5G ::= SEQUENCE {
1727
+ trackingAreaCode TrackingAreaCodeNR OPTIONAL,
1728
+ ...
1729
+ }
1730
+
1731
+ maxCellReport INTEGER ::= 8
1732
+
1733
+ WlanAPInformation ::= SEQUENCE { -- as per [IEEE 802.11]
1734
+ apMACAddress BIT STRING(SIZE (48)), -- AP MAC Address
1735
+ apTransmitPower INTEGER(-127..128) OPTIONAL, -- AP transmit power in dbm
1736
+ apAntennaGain INTEGER(-127..128) OPTIONAL, -- AP antenna gain in dBi
1737
+ apSignaltoNoise INTEGER(-127..128) OPTIONAL, -- AP S/N received at SET
1738
+ apDeviceType ENUMERATED {
1739
+ wlan802-11a(0), wlan802-11b(1), wlan802-11g(2),
1740
+ ...,
1741
+ wlan802-11n(3), wlan802-11ac(4), wlan802-11ad(5)
1742
+ } OPTIONAL,
1743
+ apSignalStrength INTEGER(-127..128) OPTIONAL, -- AP signal strength at SET
1744
+ apChannelFrequency INTEGER(0..256) OPTIONAL, -- AP channel/frequency of Tx/Rx
1745
+ apRoundTripDelay RTD OPTIONAL, -- Round Trip Delay between SET and AP
1746
+ setTransmitPower INTEGER(-127..128) OPTIONAL, -- SET transmit power in dBm
1747
+ setAntennaGain INTEGER (-127..128) OPTIONAL, -- SET antenna gain in dBi
1748
+ setSignaltoNoise INTEGER (-127..128) OPTIONAL, -- SET S/N received at AP
1749
+ setSignalStrength INTEGER(-127..128) OPTIONAL, -- SET signal strength at AP
1750
+ apReportedLocation ReportedLocation OPTIONAL, -- AP Location reported by AP (legacy encoding)
1751
+ ...,
1752
+ apRepLocation RepLocation OPTIONAL, -- AP Location reported by AP
1753
+ apSignalStrengthDelta INTEGER (0..1) OPTIONAL, -- see Table 41
1754
+ apSignaltoNoiseDelta INTEGER (0..1) OPTIONAL, -- see Table 41
1755
+ setSignalStrengthDelta INTEGER (0..1) OPTIONAL, -- see Table 41
1756
+ setSignaltoNoiseDelta INTEGER (0..1) OPTIONAL, -- see Table 41
1757
+ operatingClass INTEGER (0..255) OPTIONAL,
1758
+ apSSID OCTET STRING (SIZE (1..32)) OPTIONAL,
1759
+ apPHYType ENUMERATED {
1760
+ unknown(0), any(1), fhss(2), dsss(3), irbaseband(4),
1761
+ ofdm(5), hrdsss(6), erp(7), ht(8), ihv(9),
1762
+ ...
1763
+ } OPTIONAL,
1764
+ setMACAddress BIT STRING(SIZE (48)) OPTIONAL -- MAC Address used by SET to connect to AP
1765
+ }
1766
+
1767
+ RTD ::= SEQUENCE { -- as per [IEEE 802.11]
1768
+ rTDValue INTEGER(0..16777216), -- measured RTD value corresponding to
1769
+ -- about 500km in units of 1/10 of nanoseconds
1770
+ rTDUnits RTDUnits, -- units of RTD
1771
+ rTDAccuracy INTEGER(0..255) OPTIONAL, -- RTD accuracy
1772
+ ...
1773
+ }
1774
+
1775
+ RTDUnits ::= ENUMERATED {
1776
+ microseconds(0), hundredsofnanoseconds(1), tensofnanoseconds(2),
1777
+ nanoseconds(3), tenthsofnanoseconds(4),
1778
+ ...
1779
+ }
1780
+
1781
+ ReportedLocation ::= SEQUENCE { -- as per [IEEE 802.11v]
1782
+ locationEncodingDescriptor LocationEncodingDescriptor,
1783
+ locationData LocationData, -- location data field
1784
+ ...
1785
+ }
1786
+
1787
+ LocationEncodingDescriptor ::= ENUMERATED { lci(0), asn1(1), ...}
1788
+
1789
+ LocationData ::= SEQUENCE {
1790
+ locationAccuracy INTEGER(0..4294967295) OPTIONAL,
1791
+ locationValue OCTET STRING (SIZE(1..128)),
1792
+ ...
1793
+ }
1794
+
1795
+ RepLocation ::= CHOICE {
1796
+ lciLocData LciLocData, -- location data field as per [IEEE 802.11] and [RFC 3825]
1797
+ ... -- future formats may be added here
1798
+ }
1799
+
1800
+ LciLocData ::= SEQUENCE {
1801
+ locationDataLCI LocationDataLCI OPTIONAL,
1802
+ ...
1803
+ }
1804
+
1805
+ LocationDataLCI ::= SEQUENCE {
1806
+ latitudeResolution BIT STRING (SIZE (6)),
1807
+ latitude BIT STRING (SIZE (34)),
1808
+ longitudeResolution BIT STRING (SIZE (6)),
1809
+ longitude BIT STRING (SIZE (34)),
1810
+ altitudeType BIT STRING (SIZE (4)),
1811
+ altitudeResolution BIT STRING (SIZE (6)),
1812
+ altitude BIT STRING (SIZE (30)),
1813
+ datum BIT STRING (SIZE (8)),
1814
+ ...
1815
+ }
1816
+
1817
+ WimaxBSInformation ::= SEQUENCE {
1818
+ wimaxBsID WimaxBsID, -- WiMax serving base station ID
1819
+ wimaxRTD WimaxRTD OPTIONAL, -- Round Trip Delay measurements
1820
+ wimaxNMRList WimaxNMRList OPTIONAL, -- Network measurements
1821
+ ...
1822
+ }
1823
+
1824
+ WimaxBsID ::= SEQUENCE {
1825
+ bsID-MSB BIT STRING (SIZE(24)) OPTIONAL,
1826
+ bsID-LSB BIT STRING (SIZE(24)),
1827
+ ...
1828
+ }
1829
+ -- if only LSB is present, MSB is assumed to be identical to the current serving BS or clamped on network value
1830
+
1831
+ WimaxRTD ::= SEQUENCE {
1832
+ rtd INTEGER (0..65535), -- Round trip delay of serving BS in units of 10 ns
1833
+ rTDstd INTEGER (0..1023) OPTIONAL, -- Standard deviation of round trip delay in units of 10 ns
1834
+ ...
1835
+ }
1836
+
1837
+ WimaxNMRList ::= SEQUENCE (SIZE (1..maxWimaxBSMeas)) OF WimaxNMR
1838
+
1839
+ WimaxNMR ::= SEQUENCE {
1840
+ wimaxBsID WimaxBsID, -- WiMax BS ID for the measurement
1841
+ relDelay INTEGER (-32768..32767) OPTIONAL, -- Relative delay for this neighbouring BSs to the serving cell in units of 10 ns
1842
+ relDelaystd INTEGER (0..1023) OPTIONAL, -- Standard deviation of Relative delay in units of 10 ns
1843
+ rssi INTEGER (0..255) OPTIONAL, -- RSSI in 0.25 dBm steps, starting from -103.75 dBm
1844
+ rSSIstd INTEGER (0..63) OPTIONAL, -- Standard deviation of RSSI in dB
1845
+ bSTxPower INTEGER (0..255) OPTIONAL, -- BS transmit power in 0.25 dBm steps, starting from -103.75 dBm
1846
+ cinr INTEGER (0..255) OPTIONAL, -- in dB
1847
+ cINRstd INTEGER (0..63) OPTIONAL, -- Standard deviation of CINR in dB
1848
+ bSLocation ReportedLocation OPTIONAL, -- Reported location of the BS
1849
+ ...
1850
+ }
1851
+
1852
+ maxWimaxBSMeas INTEGER ::= 32
1853
+
1854
+ NRCellInformation ::= SEQUENCE {
1855
+ servingCellInformation ServingCellInformationNR, --Serving cell information
1856
+ measuredResultsListNR MeasResultListNR OPTIONAL, --Neighbour measurements
1857
+ ...
1858
+ }
1859
+
1860
+ -- Information for serving cells per 3GPP TS 38.331
1861
+
1862
+ ServingCellInformationNR ::= SEQUENCE (SIZE (1..maxNRServingCell)) OF ServCellNR
1863
+ -- The first listed serving cell shall be the primary cell
1864
+
1865
+ ServCellNR ::= SEQUENCE {
1866
+ physCellId PhysCellIdNR,
1867
+ arfcn-NR ARFCN-NR,
1868
+ cellGlobalId CellGlobalIdNR,
1869
+ trackingAreaCode TrackingAreaCodeNR,
1870
+ ssb-Measurements NR-Measurements OPTIONAL,
1871
+ csi-rs-Measurements NR-Measurements OPTIONAL,
1872
+ ta INTEGER(0..3846) OPTIONAL, --Timing Advance value
1873
+ ...,
1874
+ arfcn-type ENUMERATED {ssb, csi-rs} OPTIONAL,
1875
+ systemFrameNumber BIT STRING (SIZE (10)) OPTIONAL,
1876
+ ssb-IndexList-Measurements SSB-IndexList-Measurements OPTIONAL,
1877
+ csi-rs-IndexList-Measurements CSI-RS-IndexList-Measurements OPTIONAL
1878
+ }
1879
+
1880
+ -- Measured results of neighbours cells per 3GPP TS 38.331
1881
+ MeasResultListNR ::= SEQUENCE (SIZE (1..maxCellReportNR)) OF MeasResultNR
1882
+
1883
+ MeasResultNR ::= SEQUENCE {
1884
+ physCellId PhysCellIdNR,
1885
+ arfcn-NR ARFCN-NR,
1886
+ cellGlobalId CellGlobalIdNR OPTIONAL,
1887
+ trackingAreaCode TrackingAreaCodeNR OPTIONAL,
1888
+ ssb-Measurements NR-Measurements OPTIONAL,
1889
+ csi-rs-Measurements NR-Measurements OPTIONAL,
1890
+ ...,
1891
+ arfcn-type ENUMERATED {ssb, csi-rs} OPTIONAL,
1892
+ systemFrameNumber BIT STRING (SIZE (10)) OPTIONAL,
1893
+ ssb-IndexList-Measurements SSB-IndexList-Measurements OPTIONAL,
1894
+ csi-rs-IndexList-Measurements CSI-RS-IndexList-Measurements OPTIONAL
1895
+ }
1896
+
1897
+ PhysCellIdNR ::= INTEGER (0..1007)
1898
+
1899
+ ARFCN-NR ::= INTEGER (0.. 3279165)
1900
+
1901
+ TrackingAreaCodeNR ::= BIT STRING (SIZE (24))
1902
+
1903
+ CellGlobalIdNR ::= SEQUENCE {
1904
+ plmn-Identity PLMN-Identity,
1905
+ cellIdentityNR CellIdentityNR,
1906
+ ...
1907
+ }
1908
+
1909
+ CellIdentityNR ::= BIT STRING (SIZE (36))
1910
+
1911
+ NR-Measurements ::= SEQUENCE {
1912
+ rsrp-Range INTEGER (0..127) OPTIONAL,
1913
+ rsrq-Range INTEGER (0..127) OPTIONAL,
1914
+ sinr-Range INTEGER (0..127) OPTIONAL,
1915
+ ...
1916
+ }
1917
+
1918
+ SSB-IndexList-Measurements ::= SEQUENCE (SIZE (1..64)) OF SSB-Index-Measurements
1919
+
1920
+ SSB-Index-Measurements ::= SEQUENCE {
1921
+ ssb-Index-r16 INTEGER (0..63),
1922
+ ssb-Measurements NR-Measurements
1923
+ }
1924
+
1925
+ CSI-RS-IndexList-Measurements ::= SEQUENCE (SIZE (1..64)) OF CSI-RS-Index-Measurements
1926
+
1927
+ CSI-RS-Index-Measurements ::= SEQUENCE {
1928
+ csi-rs-Index INTEGER (0..95),
1929
+ csi-rs-Measurements NR-Measurements
1930
+ }
1931
+
1932
+ maxNRServingCell INTEGER ::= 32
1933
+
1934
+ maxCellReportNR INTEGER ::= 32
1935
+
1936
+ UTRAN-GPSReferenceTimeAssistance ::= SEQUENCE {
1937
+ utran-GPSReferenceTime UTRAN-GPSReferenceTime,
1938
+ gpsReferenceTimeUncertainty INTEGER (0..127) OPTIONAL,
1939
+ utranGPSDriftRate UTRANGPSDriftRate OPTIONAL
1940
+ }
1941
+
1942
+ UTRAN-GPSReferenceTime ::= SEQUENCE {
1943
+ -- For utran-GPSTimingOfCell values above 2322431999999 are not used in this version of the specification. Actual value utran-GPSTimingOfCell = (ms-part * 4294967296) + ls-part used on the downlink i.e. sent from the SLP to the SET
1944
+ utran-GPSTimingOfCell SEQUENCE {
1945
+ ms-part INTEGER (0..1023),
1946
+ ls-part INTEGER (0..4294967295)
1947
+ },
1948
+ modeSpecificInfo CHOICE {
1949
+ fdd SEQUENCE {
1950
+ referenceIdentity PrimaryCPICH-Info
1951
+ },
1952
+ tdd SEQUENCE {
1953
+ referenceIdentity CellParametersID
1954
+ }
1955
+ } OPTIONAL,
1956
+ sfn INTEGER (0..4095)
1957
+ }
1958
+
1959
+ UTRANGPSDriftRate ::= ENUMERATED {
1960
+ utran-GPSDrift0, utran-GPSDrift1, utran-GPSDrift2,
1961
+ utran-GPSDrift5, utran-GPSDrift10, utran-GPSDrift15,
1962
+ utran-GPSDrift25, utran-GPSDrift50, utran-GPSDrift-1,
1963
+ utran-GPSDrift-2, utran-GPSDrift-5, utran-GPSDrift-10,
1964
+ utran-GPSDrift-15, utran-GPSDrift-25, utran-GPSDrift-50
1965
+ }
1966
+
1967
+ UTRAN-GPSReferenceTimeResult ::= SEQUENCE {
1968
+ -- For ue-GPSTimingOfCell values above 37158911999999 are not used in this version of the specification. Actual value utran-GPSTimingOfCell = (ms-part * 4294967296) + ls-part used on the uplink i.e. reported by the SET to the SLP
1969
+ set-GPSTimingOfCell SEQUENCE {
1970
+ ms-part INTEGER (0.. 16383),
1971
+ ls-part INTEGER (0..4294967295)
1972
+ },
1973
+ modeSpecificInfo CHOICE {
1974
+ fdd SEQUENCE {
1975
+ referenceIdentity PrimaryCPICH-Info
1976
+ },
1977
+ tdd SEQUENCE {
1978
+ referenceIdentity CellParametersID
1979
+ }
1980
+ } OPTIONAL,
1981
+ sfn INTEGER (0..4095),
1982
+ gpsReferenceTimeUncertainty INTEGER (0..127) OPTIONAL,
1983
+ ...
1984
+ }
1985
+
1986
+ UTRAN-GANSSReferenceTimeAssistance ::= SEQUENCE {
1987
+ ganssDay INTEGER (0..8191) OPTIONAL,
1988
+ ganssTimeID INTEGER (0..15),
1989
+ utran-GANSSReferenceTime UTRAN-GANSSReferenceTime,
1990
+ utranGANSSDriftRate UTRANGANSSDriftRate OPTIONAL
1991
+ }
1992
+
1993
+ UTRAN-GANSSReferenceTime ::= SEQUENCE {
1994
+ ganssTOD INTEGER (0..86399),
1995
+ utran-GANSSTimingOfCell INTEGER (0..3999999) OPTIONAL,
1996
+ modeSpecificInfo CHOICE {
1997
+ fdd SEQUENCE {
1998
+ referenceIdentity PrimaryCPICH-Info
1999
+ },
2000
+ tdd SEQUENCE {
2001
+ referenceIdentity CellParametersID
2002
+ }
2003
+ } OPTIONAL,
2004
+ sfn INTEGER (0..4095),
2005
+ ganss-TODUncertainty INTEGER (0..127) OPTIONAL,
2006
+ ...
2007
+ }
2008
+
2009
+ UTRANGANSSDriftRate ::= ENUMERATED {
2010
+ utran-GANSSDrift0, utran-GANSSDrift1, utran-GANSSDrift2,
2011
+ utran-GANSSDrift5, utran-GANSSDrift10, utran-GANSSDrift15,
2012
+ utran-GANSSDrift25, utran-GANSSDrift50,
2013
+ utran-GANSSDrift-1, utran-GANSSDrift-2, utran-GANSSDrift-5,
2014
+ utran-GANSSDrift-10, utran-GANSSDrift-15, utran-GANSSDrift-25,
2015
+ utran-GANSSDrift-50}
2016
+
2017
+ UTRAN-GANSSReferenceTimeResult ::= SEQUENCE {
2018
+ ganssTimeID INTEGER (0..15),
2019
+ set-GANSSReferenceTime SET-GANSSReferenceTime,
2020
+ ...
2021
+ }
2022
+
2023
+ SET-GANSSReferenceTime ::= SEQUENCE {
2024
+ -- Actual value [ns] = (ms-Part * 4294967296 + ls-Part) * 250
2025
+ -- Actual values [ns] > 86399999999750 are reserved and are considered a
2026
+ -- protocol error
2027
+ set-GANSSTimingOfCell SEQUENCE {
2028
+ ms-part INTEGER (0..80),
2029
+ ls-part INTEGER (0..4294967295)
2030
+ } OPTIONAL,
2031
+ modeSpecificInfo CHOICE {
2032
+ fdd SEQUENCE {
2033
+ referenceIdentity PrimaryCPICH-Info
2034
+ },
2035
+ tdd SEQUENCE {
2036
+ referenceIdentity CellParametersID
2037
+ }
2038
+ } OPTIONAL,
2039
+ sfn INTEGER (0..4095),
2040
+ ganss-TODUncertainty INTEGER (0..127) OPTIONAL,
2041
+ ...
2042
+ }
2043
+
2044
+ GNSSPosTechnology ::= SEQUENCE {
2045
+ gps BOOLEAN,
2046
+ galileo BOOLEAN,
2047
+ sbas BOOLEAN,
2048
+ modernized-gps BOOLEAN,
2049
+ qzss BOOLEAN,
2050
+ glonass BOOLEAN,
2051
+ ...,
2052
+ bds BOOLEAN OPTIONAL,
2053
+ rtk-osr BOOLEAN OPTIONAL
2054
+ }
2055
+
2056
+ -- indicates MS support for particular GANSS signals and frequencies coding according to parameter definition in section 10.9
2057
+
2058
+ GANSSSignals ::= BIT STRING {
2059
+ signal1 (0),
2060
+ signal2 (1),
2061
+ signal3 (2),
2062
+ signal4 (3),
2063
+ signal5 (4),
2064
+ signal6 (5),
2065
+ signal7 (6),
2066
+ signal8 (7)
2067
+ } (SIZE (1..8))
2068
+
2069
+ SPCSETKey ::= BIT STRING(SIZE (128))
2070
+
2071
+ SPCTID ::= SEQUENCE {
2072
+ rand BIT STRING(SIZE (128)),
2073
+ slpFQDN FQDN,
2074
+ ...
2075
+ }
2076
+
2077
+ SPCSETKeylifetime ::= INTEGER (1..24) -- units in hours
2078
+
2079
+ CauseCode ::= ENUMERATED {
2080
+ servingNetWorkNotInAreaIdList(0),
2081
+ sETCapabilitiesChanged(1),
2082
+ noSUPLCoverage(2),
2083
+ ...
2084
+ }
2085
+
2086
+ ThirdParty ::= SEQUENCE (SIZE (1..64)) OF ThirdPartyID
2087
+
2088
+ ThirdPartyID ::= CHOICE {
2089
+ logicalName IA5String(SIZE (1..1000)),
2090
+ msisdn OCTET STRING(SIZE (8)),
2091
+ emailaddr IA5String(SIZE (1..1000)),
2092
+ sip-uri VisibleString(FROM ("a".."z" | "A".."Z" | "0".."9" | ":./-_~%#@?")) (SIZE (1..255)),
2093
+ ims-public-identity VisibleString(FROM ("a".."z" | "A".."Z" | "0".."9" | ":./-_~%#@?")) (SIZE (1..255)),
2094
+ min BIT STRING(SIZE (34)), -- coded according to TIA-553
2095
+ mdn OCTET STRING(SIZE (8)),
2096
+ uri VisibleString(FROM ("a".."z" | "A".."Z" | "0".."9" | "./-_~%#")) (SIZE (1..255)),
2097
+ ...
2098
+ }
2099
+
2100
+ ApplicationID ::= SEQUENCE {
2101
+ appProvider IA5String(SIZE (1..24)), -- The application provider
2102
+ appName IA5String(SIZE (1..32)), -- The application name
2103
+ appVersion IA5String(SIZE (1..8)) OPTIONAL, -- The application version
2104
+ ...
2105
+ }
2106
+
2107
+ ReportingCap ::= SEQUENCE {
2108
+ minInt INTEGER (1..3600), -- units in seconds
2109
+ maxInt INTEGER (1..1440) OPTIONAL, -- units in minutes repMode RepMode,
2110
+ batchRepCap BatchRepCap OPTIONAL, -- only used for batch and quasi real time reporting
2111
+ ...
2112
+ }
2113
+
2114
+ RepMode ::= SEQUENCE {
2115
+ realtime BOOLEAN,
2116
+ quasirealtime BOOLEAN,
2117
+ batch BOOLEAN,
2118
+ ...
2119
+ }
2120
+
2121
+ BatchRepCap ::= SEQUENCE {
2122
+ report-position BOOLEAN, -- set to "true" if reporting of position is supported
2123
+ report-measurements BOOLEAN, -- set to "true" if reporting of measurements is supported
2124
+ max-num-positions INTEGER (1..1024) OPTIONAL,
2125
+ max-num-measurements INTEGER (1..1024) OPTIONAL,
2126
+ ...
2127
+ }
2128
+
2129
+ Coordinate::= SEQUENCE {
2130
+ latitudeSign ENUMERATED {north(0), south(1)},
2131
+ latitude INTEGER(0..8388607),
2132
+ longitude INTEGER(-8388608..8388607)
2133
+ } -- Coding as in [3GPP GAD]
2134
+
2135
+ CircularArea ::= SEQUENCE {
2136
+ coordinate Coordinate,
2137
+ radius INTEGER(1..1000000), -- radius in meters
2138
+ radius-min INTEGER(1..1000000) OPTIONAL, -- hysteresis minimum radius
2139
+ radius-max INTEGER(1..1500000) OPTIONAL -- hysteresis maximum radius
2140
+ }
2141
+
2142
+ EllipticalArea ::= SEQUENCE {
2143
+ coordinate Coordinate,
2144
+ semiMajor INTEGER(1..1000000), -- units in meters
2145
+ semiMajor-min INTEGER(1..1000000) OPTIONAL, -- hysteresis minimum semiMajor
2146
+ semiMajor-max INTEGER(1..1500000) OPTIONAL, -- hysteresis maximum semiMajor
2147
+ semiMinor INTEGER(1..1000000), -- units in meters
2148
+ semiMinor-min INTEGER(1..1000000) OPTIONAL, -- hysteresis minimum semiMinor
2149
+ semiMinor-max INTEGER(1..1500000) OPTIONAL, -- hysteresis maximum semiMinor
2150
+ angle INTEGER(0.. 179) -- units in degrees. The angle is defined as the angle between the semi-major axis and North, increasing in a clockwise direction. An angle of 0 represents an ellipse with the semi-major axis pointing North/South while an angle of 90 represents an ellipse with the semi-major axis pointing East/West.
2151
+ }
2152
+
2153
+ PolygonArea ::= SEQUENCE {
2154
+ polygonDescription PolygonDescription,
2155
+ polygonHysteresis INTEGER(1..100000) OPTIONAL --units in meters
2156
+ }
2157
+
2158
+ PolygonDescription ::= SEQUENCE (SIZE (3..15)) OF Coordinate
2159
+
2160
+ Ver2-HighAccuracyPosition ::= SEQUENCE {
2161
+ timestamp UTCTime, -- shall include seconds and shall use UTC time.
2162
+ highAccuracyPositionEstimate HighAccuracyPositionEstimate,
2163
+ velocity Velocity OPTIONAL,
2164
+ ...
2165
+ }
2166
+
2167
+ HighAccuracyPositionEstimate ::= SEQUENCE {
2168
+ degreesLatitude INTEGER(-2147483648..2147483647),
2169
+ degreesLongitude INTEGER(-2147483648..2147483647),
2170
+ uncertaintySemiMajor INTEGER (0..255),
2171
+ uncertaintySemiMinor INTEGER (0..255),
2172
+ orientationMajorAxis INTEGER (0..179),
2173
+ horizontalConfidence INTEGER (0..100),
2174
+ highAccuracyAltitudeInfo HighAccuracyAltitudeInfo OPTIONAL,
2175
+ ...
2176
+ } -- Coding as in [3GPP GAD]
2177
+
2178
+ HighAccuracyAltitudeInfo ::= SEQUENCE {
2179
+ altitude INTEGER(64000..1280000),
2180
+ uncertaintyAltitude INTEGER (0..255),
2181
+ verticalConfidence INTEGER (0..100),
2182
+ ...
2183
+ } -- Coding as in [3GPP GAD]
2184
+
2185
+ END