Commit 7d7840a7 authored by Denis Filatov's avatar Denis Filatov
Browse files

Bugfixes

parent 92c76c07
Loading
Loading
Loading
Loading
+15 −13
Original line number Diff line number Diff line
-- official version including bug fixes

POIM-ParkingAvailability {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) poi(103916) parkingAvailability(1) major-version-1 (1) minor-version-1 (1)}   

DEFINITIONS AUTOMATIC TAGS ::= BEGIN
@@ -29,9 +31,9 @@ FROM EfcDataDictionary {iso(1) standard(0) 17573 dd(3) version1(1) minorVersion3
 *
 * @field aggregatedStatus: aggregated status information about the parking facility.
 *
 * @field detailedStatus: detailed topology and status information about the parking areas and spaces.
 * @field detailedStatus: optional detailed topology and status information about the parking areas and spaces.
 *
 * @field relatedPoi: reference to other relevant POI Information Blocks.  
 * @field relatedPoi: optional reference to other relevant POI Information Blocks.  
 *
*/	
ParkingAvailabilityBlock::= SEQUENCE{
@@ -56,11 +58,11 @@ ParkingAvailabilityBlock::= SEQUENCE{
 *
 * @field openingPeriods: the optional opening periods of the parking facility.
 *
 * @field address: the address of the parking facility.
 * @field address: the optional address of the parking facility.
 *
 * @field phoneNumber: the phone number of the operator of the parking facility. 
 * @field phoneNumber: the optional phone number of the operator of the parking facility. 
 *
 * @field website: the URL of the website of the operator of the parking facility.
 * @field website: the optional URL of the website of the operator of the parking facility.
 *
*/
GeneralParkingPlaceContainer::= SEQUENCE{
@@ -169,7 +171,7 @@ LoadType::= SEQUENCE{
 *
 * @field trend: the current trend of the occupancy.
 *
 * @field freeSpaces: the number of spaces that are actually available.
 * @field freeSpaces: the number of spaces that are actually available <= totalSpaces.
 *
 * @field totalSpaces: the total number of spaces.
 *
@@ -180,7 +182,7 @@ OccupancyInformation::= SEQUENCE{
   rate            OccupancyRate,
   trend           OccupancyTrend, 
   freeSpaces      NumberOfSpaces,
   totalSpaces	   NumberOfSpaces,
   totalSpaces	   NumberOfSpaces (1..16383), -- bug fix of official version
   confidence      ConfidenceLevel,
   ...
} 
@@ -363,7 +365,7 @@ ParkingSpaceDetailed ::= SEQUENCE{
 * This DF shall contain a list of @ref ParkingSpaceBasic.  
 *
*/
ParkingSpacesBasic ::= SEQUENCE OF ParkingSpaceBasic
ParkingSpacesBasic ::= SEQUENCE OF ParkingSpaceBasic -- bug fix of official version

/**
 * This DF shall contain a list of @ref ParkingSpaceDetailed.  
@@ -541,25 +543,25 @@ GoodsType::= INTEGER {
 * This DE represents a number of parking spaces.
 * 
 * The value shall be set to:
 * - `n` (`n > 0` and `n < 16383`) : for the number of spaces.
 * - `n` (`n >= 0` and `n < 16382`) : for the number of spaces.
 * - `16383`                        : in case the number of spaces is not available.
 *
*/
NumberOfSpaces ::= INTEGER {
    unavailable (16383)  
} (1..16383)
} (0..16383) -- bug fix of official version

/** 
 * This DE represents an occupancy rate in percentage.
 * 
 * The value shall be set to:
 * - `n` (`n > 0` and `n < 101`) : for the occupany rate in %,
 * - `n` (`n >= 0` and `n < 101`) : for the occupany rate in %,
 * - `101`                   : in case the occupany rate is not available.
 *
*/
OccupancyRate ::= INTEGER {
    unavailable (101)  
} (1..101)
} (0..101) -- bug fix of official version

/** 
 * This DE indicates the trend of occupancy.

README.md

100644 → 100755
+0 −0

File mode changed from 100644 to 100755.