Skip to main content
Version: 1.1.3

Road signs

The Road sign type (TrafficSignDatasetDTO) represents the road signs cataloged, with a particular focus on parking-related signs.

Description

Road signs provide crucial information about parking regulations: bans, restrictions, paid zones, and more.

  • No parking
  • No stopping or parking
  • Paid parking
  • Blue zone (parking disc)
  • Accessible parking
  • Loading zone
  • Parking hours

Properties

Identification

PropertyTypeDescriptionExample
idstringUnique identifierts_d5e6f7a8b9c0d1e2
layer_typestringDocument typetraffic_sign
h3_indexstringParent H3 cell893b0c6a9a7ffff

Location

PropertyTypeDescription
locationGeoPointEstimated GPS position of the sign { lat, lon }

Classification

PropertyTypeDescriptionExample
sign_typestringSign type (automatic transcription)no_parking, paid_parking
textstringText read on the sign (if legible)8am-7pm except Sun.
parking_relatedbooleanParking-related signtrue

Traceability

PropertyTypeDescription
source_typestringSource imagery type (street_level: ground-level imagery, satellite_hd: satellite imagery)
captured_atdatetimeDate of the source imagery

Quality

PropertyTypeDescription
fit_scorenumberConfidence score (0-1)

Sign types

Parking signs

TypeDescriptionHighway Code
no_parkingNo parkingB6a1
no_stoppingNo stopping or parkingB6d
paid_parkingPaid parkingB6b3
blue_zoneBlue zone (parking disc required)B6b4
disabled_parkingAccessible parkingB6d + M6h
delivery_zoneLoading zoneB6b1
time_limitedTime-limited parkingB6b2

Other common signs

TypeDescription
speed_limitSpeed limit
stopStop
give_wayGive way
one_wayOne way
dead_endDead end

The parking_related field lets you quickly filter parking-related signs:

-- WFS Filter
parking_related = true

This flag is true for every sign that affects parking:

  • Parking bans
  • Regulated zones
  • Parking lot signage

Use cases

Regulatory mapping

Use road signs to:

  • Identify no-parking zones
  • Locate paid zones
  • Spot regulatory accessible spaces

Data validation

Cross-reference signs with parking areas to:

  • Confirm parking bans
  • Identify inconsistencies (spaces in a banned zone)
  • Enrich zone metadata

Regulatory studies

Analyze signs to:

  • Map regulated zones
  • Assess signage coverage
  • Plan new equipment

Signs are displayed in red (triangles) by default:

  1. Download the style file: traffic_signs.qml
  2. In QGIS: right-click the layer → Properties → Symbology
  3. Style → Load Style → select the .qml file

Download and styling guide →

GeoJSON example

{
"type": "Feature",
"properties": {
"id": "ts_d5e6f7a8b9c0d1e2",
"layer_type": "traffic_sign",
"h3_index": "893b0c6a9a7ffff",
"sign_type": "no_parking",
"text": "8h-19h sauf dim.",
"parking_related": true,
"source_type": "street_level",
"captured_at": "2025-01-10T09:45:00Z",
"fit_score": 0.91
},
"geometry": {
"type": "Point",
"coordinates": [55.48, -21.12]
}
}

Relation to other types

TypeRelation
Parking areasSigns define the regulations for parking areas
Road segmentsSigns are located along road segments
H3 cellsAggregation by hexagonal zone

Limitations

Coverage

Sign coverage depends on the zones mapped and the quality of the available sources.

Interpretation

The text extracted from signs (text) is an automatic transcription. For a precise legal interpretation, always refer to the signage on site.