Skip to content
Commits on Source (2)
...@@ -123,8 +123,6 @@ ParkingSpaceIntentIndication ::= SEQUENCE { ...@@ -123,8 +123,6 @@ ParkingSpaceIntentIndication ::= SEQUENCE {
* *
* @field size: The size dimensions of the parking space, including width and length measurements. * @field size: The size dimensions of the parking space, including width and length measurements.
* *
* @field orientation: The orientation of the parking space.
*
* @field externalParkingSpaceIds: Represents links to external systems, e.g., to electric vehicle charging stations. * @field externalParkingSpaceIds: Represents links to external systems, e.g., to electric vehicle charging stations.
* *
* @category: * @category:
...@@ -135,7 +133,6 @@ IndividualParkingSpace ::= SEQUENCE { ...@@ -135,7 +133,6 @@ IndividualParkingSpace ::= SEQUENCE {
position GeoPosition, position GeoPosition,
attributes ParkingSpaceAttributes, attributes ParkingSpaceAttributes,
size ParkingSpaceSize OPTIONAL, size ParkingSpaceSize OPTIONAL,
orientation Wgs84Angle OPTIONAL,
externalParkingSpaceIds ExternalParkingSpaceIdentifiers OPTIONAL, externalParkingSpaceIds ExternalParkingSpaceIdentifiers OPTIONAL,
... ...
} }
...@@ -242,8 +239,6 @@ ParkingSegments ::= SEQUENCE SIZE(1..32, ...) OF ParkingSegment ...@@ -242,8 +239,6 @@ ParkingSegments ::= SEQUENCE SIZE(1..32, ...) OF ParkingSegment
* *
* @field size: The size dimensions of the parking space, including width and length measurements.gs) * @field size: The size dimensions of the parking space, including width and length measurements.gs)
* *
* @field orientation: The orientation of the parking space.
*
* @category: * @category:
* @revision: Created in V2.1.1 * @revision: Created in V2.1.1
*/ */
...@@ -253,7 +248,6 @@ ParkingSegment ::= SEQUENCE { ...@@ -253,7 +248,6 @@ ParkingSegment ::= SEQUENCE {
offsetToPath StandardLength1B OPTIONAL, offsetToPath StandardLength1B OPTIONAL,
attributes ParkingSpaceAttributes, attributes ParkingSpaceAttributes,
size ParkingSpaceSize OPTIONAL, size ParkingSpaceSize OPTIONAL,
orientation Wgs84Angle OPTIONAL,
... ...
} }
......
...@@ -14,14 +14,14 @@ FROM ETSI-ITS-CDD { ...@@ -14,14 +14,14 @@ FROM ETSI-ITS-CDD {
; ;
/** /**
* This DF indicates the ApplicationData to be put in the SAMapplicationData field of SA messages. * This DF indicates data to be put in the advertisement service's application-specific data field.
* *
* @field request: If present, then the sender C-ITS station indicates a request for PIMs from remote ITS stations. * @field request: If present, then the sender C-ITS station indicates a request for PIMs from remote ITS stations.
* *
* @category: * @category:
* @revision: Created in V2.1.1 * @revision: Created in V2.1.1
*/ */
PimSamApplicationData ::= SEQUENCE { PimAdvertiseApplicationData ::= SEQUENCE {
request PIMRequest OPTIONAL, request PIMRequest OPTIONAL,
... ...
} }
......