Skip to content

TrafficRegulation

TrafficRegulation

The TrafficRegulation within the ControlledZoneTablePublication aims to define the specific traffic rules and restrictions that apply within a controlled zone. This includes, for example:

  • Access restrictions for certain vehicle categories (e.g., trucks, high-emission vehicles).
  • Time-based restrictions (e.g., access only during certain hours or days).
  • Speed limits or lane restrictions.
  • Prohibitions or restrictions on specific roads.

The TrafficRegulation provides a detailed description of the rules that apply within a controlled area, allowing traffic systems, navigation software, and road users to take them into account.

The structure is as follows:

image


Attributes

Attribute Type Required Domain Description
id String Yes See explanation A unique identifier for the data provider
version String Yes 1 or higher A unique version number for the data provider

id

The id attribute assigns a name (identifier) to the trafficRegulationOrder. The following convention is used: the ID starts with a 5-character code assigned by NDW. After these 5 characters, a _ is followed by the data provider's identifier, ensuring a unique identification.


Elements

Element Type Required Domain Description
typeOfRegulation TypeOfRegulation Yes N/A The type of traffic regulation
condition Condition Yes N/A Conditions for the validity of the traffic rule
permitInformation PermitInformation No N/A Information on permits, including registrations and stickers

XML Example
<d2:payload xmlns:tro="http://datex2.eu/schema/3/trafficRegulation" xmlns:loc="http://datex2.eu/schema/3/locationReferencing" xmlns:cz="http://datex2.eu/schema/3/controlledZone" xmlns:comx="http://datex2.eu/schema/3/commonExtension" xmlns:com="http://datex2.eu/schema/3/common" xmlns:d2="http://datex2.eu/schema/3/d2Payload" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="cz:ControlledZoneTablePublication" lang="nl" modelBaseVersion="3" xsi:schemaLocation="http://datex2.eu/schema/3/d2Payload LevelC_3_D2Payload.xsd">
  <com:publicationTime>2024-11-13T09:00:50.000356907Z</com:publicationTime>
  <com:publicationCreator>
    <com:country>nl</com:country>
    <com:nationalIdentifier>NDWNL</com:nationalIdentifier>
  </com:publicationCreator>
  <cz:headerInformation>
    <com:informationStatus>real</com:informationStatus>
  </cz:headerInformation>
  <cz:controlledZoneTable>
      ...
      <cz:trafficRegulationOrder id="NDW11_989846cf-0343-4abc-b169-1a2ddaf497d9_TRO" version="1">
        ...
        <tro:trafficRegulation id="NDW11_989846cf-0343-4abc-b169-1a2ddaf497d9_TR" version="1">
            <tro:typeOfRegulation xsi:type="tro:AccessRestriction">
                <tro:accessRestrictionType>noEntry</tro:accessRestrictionType>
            </tro:typeOfRegulation>
            <tro:condition xsi:type="tro:ConditionSet" id="NDW11_989846cf-0343-4abc-b169-1a2ddaf497d9_CS" version="1">
                ...
           </tro:conditions>
        </tro:trafficRegulation>
      </cz:trafficRegulationOrder>
    </cz:urbanVehicleAccessRegulation>
    <cz:urbanVehicleAccessRegulation id="NDW11_500de66b-b51e-465f-8309-6d5eda0de5a1" version="1">
    ..
    </cz:urbanVehicleAccessRegulation>    
  </cz:controlledZoneTable>
</d2:payload>
Go back to the previous page