Skip to content

TypeOfRegulation

The concept of TypeOfRegulation is used to define the nature of rules and restrictions within a controlled zone.

The goal of TypeOfRegulation is to specify which types of regulations apply in a given zone. This can include:

  • Access control: Rules for entering a zone (e.g., low-emission zones, environmental zones, or toll roads).
  • Parking restrictions: Limitations related to parking, such as permit zones or loading/unloading zones.
  • Usage restrictions: Regulations that govern the use of certain vehicles or modes of transport within the zone (e.g., only public transport or cyclists).
  • Speed limits: Maximum speeds within the zone.
  • Temporary regulations: Temporary measures, such as closures during events or construction work.

The use of TypeOfRegulation helps structure and share information about rules in a controlled zone so that road users and systems can interpret and comply with it. This promotes efficient traffic flow and compliance with local regulations.

The structure is as follows:

image

AccessRestriction elements

TypeOfRegulation is an abstract class and cannot be used directly. Within the Dutch profile, only AccessRestriction is used as a concrete implementation.

Element Type Required Domain Description
accessRestrictionType AccessRestrictionTypeEnum Yes noEntry, noUseOfAudibleWarningDevices, noPassingWithoutStopping The type of access restriction
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