Commit 7c0c2909 authored by András Wippelhauser's avatar András Wippelhauser
Browse files

Added management container with segmentation info

parent b3f9535b
Loading
Loading
Loading
Loading
+15 −2
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@ BEGIN

IMPORTS 

BasicContainer, ItsPduHeader, Identifier2B, ParkingSpaceStatus, StandardLength12b, TimestampIts, StationId, Wgs84Angle, DeltaPosition, Path, DeltaTimeTenthOfSecond, StandardLength1B, GeoPosition, ParkingReservationType, ParkingAreaArrangementType, ParkingOccupancyInfo, ParkingSpaceBasic, DeltaPositions
BasicContainer, ItsPduHeader, Identifier2B, ParkingSpaceStatus, StandardLength12b, TimestampIts, StationId, Wgs84Angle, DeltaPosition, Path, DeltaTimeTenthOfSecond, StandardLength1B, GeoPosition, ParkingReservationType, ParkingAreaArrangementType, ParkingOccupancyInfo, ParkingSpaceBasic, DeltaPositions, MessageSegmentationInfo
FROM ETSI-ITS-CDD {
    itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) 102894 cdd (2) major-version-4 (4) minor-version-2 (2)
}
@@ -30,6 +30,8 @@ PODAM ::= SEQUENCE {
/**
 * This DF indicates the parameters necessary for the PODAM
 *
 * @field managementContainer: The management container.
 *
 * @field detections: The list of detected spaces.
 *
 * @field intentIndication: The space that the ego vehicle intends to occupy
@@ -38,12 +40,23 @@ PODAM ::= SEQUENCE {
 * @revision: Created in V2.1.1
*/
PodasParameters ::= SEQUENCE {
    -- Idea: introduce management container
    managementContainer PodasManagementContainer,
    detections          ParkingSpaceDetections OPTIONAL,
    intentIndication    ParkingSpaceIntentIndication OPTIONAL,
    ...
}

/**
 * This DF  represents the management container of the PODAM.
 * It shall include the following components:
 *
 * @field segmentationInfo: information regarding the message segmentation on facility layer.
*/
PodasManagementContainer ::= SEQUENCE {
    segmentationInfo MessageSegmentationInfo,
    ...
}

/**
 * This DF describes the list of space detections
 *