Logo
developer platform
Docs
API
Pricing
Showcase
API Overview
API Reference
Geocoding
Geocoding NearbyGeocoding SearchPort ListPort Info
Weather Core
ForecastRadarClimateWarnings
Weather Timeseries
Timeseries ModelsTimeseries Point ForecastTimeseries Route Forecast
Weather Ensemble
Ensemble ModelsEnsemble Point ForecastEnsemble Route Forecast
Marine Timeseries
Timeseries ModelsTimeseries Point Forecast
Marine Ensemble
Ensemble ModelsEnsemble Point Forecast
Vessels
Vessel SearchVessel InfoVessel LocationVessel Location History
Observations
Observations InfoObservations Latest
Lightning
Lightning LiveLightning History
Earthquakes
Earthquakes
Tropical Storms
Tropical Storms
Mobility Traffic (NL Only)
Traffic OverviewTraffic Geo
Mobility Transit (NL Only)
Transit PlannerTransit Planner MixerTransit Stops NearbyTransit Stop Departures
Developer Infoplaza (obsolete)
Weather ClimateWeather Forecast
Archive
Test ErrorWeather Climate (old)

Traffic Geo

GET
https://api.infoplaza.dev/v1/traffic/geo

Description

The Traffic GeoJSON API provides real-time traffic events for the Netherlands in GeoJSON format.

Each feature represents a road closure, congestion, or traffic measure with full geometry for visualization on maps. This makes it ideal for interactive applications, dashboards, and GIS integrations.

Parameters

No parameters needed.

Response

PropertyTypeDescription
type
stringSpecifies the GeoJSON collection type.
enum: ["FeatureCollection"]
updated
integerTimestamp in milliseconds since Unix epoch when the traffic data was last updated.
features
arrayArray of traffic event features, each representing a road closure, congestion, or traffic measure.
└─id
stringUnique identifier for the feature.
└─type
stringGeoJSON feature type, always 'Feature' for each item.
enum: ["Feature"]
└─geometry
objectGeometry object describing the spatial location and shape of the traffic event, suitable for mapping.
└─type
stringType of the geometry. Can be 'Point' or 'LineString' depending on the event representation.
enum: ["Point", "LineString"]
└─coordinates
array | arrayCoordinates array representing the geometry location(s). For 'Point' this is a [longitude, latitude] pair. For 'LineString' this is an array of [longitude, latitude] pairs forming a path.
└─properties
objectAttributes describing the traffic event details.
└─id
stringUnique identifier for the event, typically starting with 'NLRWS_'.
└─type
stringCategory of the event, such as 'Verkeershinder' (traffic disturbance) or 'Verkeers maatregel' (traffic measure).
└─cause
stringCause or reason of the traffic event, e.g., 'Door grenscontrole', 'Wegwerkzaamheden', or empty if not specified.
└─trend
stringIndicates if the traffic congestion is increasing, decreasing, or equal compared to previous data.
enum: ["INCREASED", "DECREASED", "EQUAL"]
└─version
stringVersion number of the event record.
└─roadName
stringName of the road or location associated with the event.
└─causeType
stringGeneral classification of the cause, e.g., 'congestion', 'carriagewayClosed', 'truckProblem', 'accident'.
└─delayBand
stringIndicative delay caused by the event, e.g., 'NEGLIGIBLE', 'BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES'.
└─startTime
stringEvent start time in ISO 8601 format, indicating when the event began.
format: date-time
└─roadNumber
stringOfficial road or highway number identifier.
└─toLocation
stringEnding location reference of the affected road segment.
└─description
stringTextual description of the traffic event suitable for user interpretation.
└─queueLength
stringLength of the traffic queue in meters, if applicable.
└─versionTime
stringTimestamp of the last update to this event version in ISO 8601 format with UTC timezone.
format: date-time
└─fromLocation
stringStarting location reference of the affected road segment.
└─presentationType
stringPresentation style of the event on UI or maps, such as 'stationary', 'slow', or 'closed'.

Example Request

curl "https://api.infoplaza.dev/v1/traffic/geo? \
     api_key=$INFOPLAZA_API_KEY"

Example Response

{
  "type": "FeatureCollection",
  "updated": 1757589274580,
  "features": [
    {
      "id": "fid-144f1395_1993763d922_528c",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            7.004748,
            52.308723
          ],
          [
            7.043839,
            52.31377
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856495_1",
        "type": "Verkeershinder",
        "cause": "Door grenscontrole",
        "trend": "DECREASED",
        "version": "93",
        "roadName": "Grensovergang Duitsland",
        "causeType": "congestion",
        "delayBand": "NEGLIGIBLE",
        "startTime": "2025-09-11T09:41:27.752242Z",
        "roadNumber": "A1",
        "toLocation": "Grensovergang Duitsland",
        "description": "Stilstaand verkeer tussen Grensovergang Duitsland en Afrit De Lutte",
        "queueLength": "2700",
        "versionTime": "2025-09-11T11:13:00.726673Z",
        "fromLocation": "Afrit De Lutte",
        "presentationType": "stationary"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_528d",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            4.394784,
            51.701527
          ],
          [
            4.394675,
            51.702212
          ],
          [
            4.394625,
            51.702842
          ],
          [
            4.394631,
            51.70366
          ],
          [
            4.3947,
            51.704371
          ],
          [
            4.394798,
            51.70493
          ],
          [
            4.394987,
            51.705673
          ],
          [
            4.395218,
            51.706361
          ],
          [
            4.395517,
            51.707056
          ],
          [
            4.396091,
            51.708162
          ],
          [
            4.397104,
            51.709847
          ],
          [
            4.4031,
            51.719456
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856555_1",
        "type": "Verkeershinder",
        "cause": "",
        "trend": "EQUAL",
        "version": "1",
        "roadName": "Haringvlietbrug",
        "causeType": "congestion",
        "delayBand": "NEGLIGIBLE",
        "startTime": "2025-09-11T11:12:28.759819Z",
        "roadNumber": "A29",
        "toLocation": "Haringvlietbrug",
        "description": "Stilstaand verkeer tussen Haringvlietbrug en Knooppunt Hellegatsplein",
        "queueLength": "2100",
        "versionTime": "2025-09-11T11:12:28.759819Z",
        "fromLocation": "Knooppunt Hellegatsplein",
        "presentationType": "stationary"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_528e",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            5.429284,
            52.175057
          ],
          [
            5.430789,
            52.174203
          ],
          [
            5.431824,
            52.173658
          ],
          [
            5.432693,
            52.173228
          ],
          [
            5.439447,
            52.170063
          ],
          [
            5.44118,
            52.169279
          ],
          [
            5.442514,
            52.168743
          ],
          [
            5.443236,
            52.168491
          ],
          [
            5.443758,
            52.16833
          ],
          [
            5.444127,
            52.16819
          ],
          [
            5.444945,
            52.167992
          ],
          [
            5.446008,
            52.167785
          ],
          [
            5.447667,
            52.167562
          ],
          [
            5.449531,
            52.167384
          ],
          [
            5.508196,
            52.163081
          ],
          [
            5.511781,
            52.162833
          ],
          [
            5.513578,
            52.16274
          ],
          [
            5.515494,
            52.162685
          ],
          [
            5.517424,
            52.16268
          ],
          [
            5.519089,
            52.162707
          ],
          [
            5.524233,
            52.162857
          ],
          [
            5.526527,
            52.162939
          ],
          [
            5.529125,
            52.163075
          ],
          [
            5.531598,
            52.163256
          ],
          [
            5.534192,
            52.163515
          ],
          [
            5.537138,
            52.163876
          ],
          [
            5.554626,
            52.16629
          ],
          [
            5.557732,
            52.16669
          ],
          [
            5.56024,
            52.166982
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856533_1",
        "type": "Verkeershinder",
        "cause": "",
        "trend": "INCREASED",
        "version": "31",
        "roadName": "Afrit Barneveld",
        "causeType": "congestion",
        "delayBand": "BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES",
        "startTime": "2025-09-11T10:42:28.378170Z",
        "roadNumber": "A1",
        "toLocation": "Afrit Barneveld",
        "description": "Stilstaand verkeer tussen Afrit Barneveld en Knooppunt Hoevelaken",
        "queueLength": "9200",
        "versionTime": "2025-09-11T11:13:00.656837Z",
        "fromLocation": "Knooppunt Hoevelaken",
        "presentationType": "stationary"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_528f",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            4.794557,
            52.32715
          ],
          [
            4.795633,
            52.32692
          ],
          [
            4.795986,
            52.326799
          ],
          [
            4.797161,
            52.326487
          ],
          [
            4.798108,
            52.326214
          ],
          [
            4.799235,
            52.325809
          ],
          [
            4.800239,
            52.325397
          ],
          [
            4.801634,
            52.324745
          ],
          [
            4.802674,
            52.324183
          ],
          [
            4.803537,
            52.323655
          ],
          [
            4.804058,
            52.323303
          ],
          [
            4.804625,
            52.322868
          ],
          [
            4.805666,
            52.321962
          ],
          [
            4.806165,
            52.321492
          ],
          [
            4.807306,
            52.320332
          ],
          [
            4.808129,
            52.319428
          ],
          [
            4.808975,
            52.318435
          ],
          [
            4.809299,
            52.318134
          ],
          [
            4.810008,
            52.317347
          ],
          [
            4.81093,
            52.316388
          ],
          [
            4.811396,
            52.315931
          ],
          [
            4.812081,
            52.315303
          ],
          [
            4.8133,
            52.314276
          ],
          [
            4.814475,
            52.313404
          ],
          [
            4.815257,
            52.312873
          ],
          [
            4.816244,
            52.312234
          ],
          [
            4.81708,
            52.311732
          ],
          [
            4.818064,
            52.31118
          ],
          [
            4.819051,
            52.310665
          ],
          [
            4.820131,
            52.31014
          ],
          [
            4.821207,
            52.30966
          ],
          [
            4.822468,
            52.309141
          ],
          [
            4.823606,
            52.308702
          ],
          [
            4.824702,
            52.308305
          ],
          [
            4.826763,
            52.307597
          ],
          [
            4.827833,
            52.307261
          ],
          [
            4.828795,
            52.306983
          ],
          [
            4.83062,
            52.306519
          ],
          [
            4.832452,
            52.306108
          ],
          [
            4.83385,
            52.305819
          ],
          [
            4.836079,
            52.305396
          ],
          [
            4.837284,
            52.305188
          ],
          [
            4.838644,
            52.304979
          ],
          [
            4.840828,
            52.304684
          ],
          [
            4.843375,
            52.304398
          ],
          [
            4.844973,
            52.304194
          ],
          [
            4.845969,
            52.304048
          ],
          [
            4.846943,
            52.303877
          ],
          [
            4.848183,
            52.303603
          ],
          [
            4.848989,
            52.303389
          ],
          [
            4.850163,
            52.303023
          ],
          [
            4.850967,
            52.302729
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856518_1",
        "type": "Verkeershinder",
        "cause": "",
        "trend": "INCREASED",
        "version": "47",
        "roadName": "Afrit Amstelveen-Stadshart",
        "causeType": "congestion",
        "delayBand": "BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES",
        "startTime": "2025-09-11T10:26:27.799826Z",
        "roadNumber": "A9",
        "toLocation": "Afrit Amstelveen-Stadshart",
        "description": "Stilstaand verkeer tussen Knooppunt Badhoevedorp en Afrit Amstelveen-Stadshart",
        "queueLength": "4800",
        "versionTime": "2025-09-11T11:13:01.460983Z",
        "fromLocation": "Knooppunt Badhoevedorp",
        "presentationType": "stationary"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_5290",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            4.844521,
            52.388775
          ],
          [
            4.844452,
            52.389106
          ],
          [
            4.844287,
            52.392246
          ],
          [
            4.844329,
            52.393511
          ],
          [
            4.844413,
            52.394173
          ],
          [
            4.844518,
            52.394643
          ],
          [
            4.844635,
            52.39503
          ],
          [
            4.844772,
            52.395403
          ],
          [
            4.845007,
            52.395923
          ],
          [
            4.845404,
            52.396618
          ],
          [
            4.845729,
            52.397087
          ],
          [
            4.845984,
            52.397411
          ],
          [
            4.846483,
            52.397971
          ],
          [
            4.847129,
            52.398588
          ],
          [
            4.850862,
            52.401718
          ],
          [
            4.851748,
            52.402497
          ],
          [
            4.852021,
            52.402792
          ],
          [
            4.853844,
            52.404379
          ],
          [
            4.854972,
            52.405327
          ],
          [
            4.855336,
            52.40561
          ],
          [
            4.856472,
            52.406601
          ],
          [
            4.857051,
            52.407067
          ],
          [
            4.859032,
            52.408586
          ],
          [
            4.859536,
            52.408994
          ],
          [
            4.860204,
            52.409578
          ],
          [
            4.860685,
            52.41003
          ],
          [
            4.861198,
            52.410548
          ],
          [
            4.867373,
            52.416964
          ],
          [
            4.86765,
            52.417281
          ],
          [
            4.868671,
            52.418341
          ],
          [
            4.86963,
            52.419223
          ],
          [
            4.870317,
            52.419761
          ],
          [
            4.870791,
            52.420086
          ],
          [
            4.871376,
            52.420438
          ],
          [
            4.871682,
            52.420534
          ],
          [
            4.87261,
            52.420945
          ],
          [
            4.873355,
            52.421234
          ],
          [
            4.87493,
            52.421793
          ],
          [
            4.875359,
            52.421984
          ],
          [
            4.875928,
            52.422285
          ],
          [
            4.876449,
            52.422503
          ],
          [
            4.877049,
            52.422781
          ],
          [
            4.877543,
            52.42294
          ],
          [
            4.878035,
            52.42306
          ],
          [
            4.878664,
            52.423153
          ],
          [
            4.879754,
            52.423226
          ],
          [
            4.880321,
            52.423283
          ],
          [
            4.882719,
            52.423649
          ],
          [
            4.883947,
            52.423907
          ],
          [
            4.88449,
            52.424038
          ],
          [
            4.885959,
            52.424473
          ],
          [
            4.886485,
            52.424611
          ],
          [
            4.886968,
            52.424706
          ],
          [
            4.887557,
            52.424784
          ],
          [
            4.888067,
            52.424826
          ],
          [
            4.888644,
            52.424852
          ],
          [
            4.890188,
            52.42488
          ],
          [
            4.893313,
            52.424822
          ],
          [
            4.894043,
            52.424746
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004804991_1",
        "type": "Verkeers maatregel",
        "cause": "Wegwerkzaamheden",
        "version": "233",
        "roadName": "Knooppunt Coenplein",
        "causeType": "carriagewayClosed",
        "startTime": "2025-08-01T10:50:00Z",
        "roadNumber": "A10",
        "toLocation": "Knooppunt Coenplein",
        "description": "Rijbaan gesloten op de hoofdrijbaan tussen Knooppunt Coenplein en Afrit Amsterdam-Sloterdijk",
        "versionTime": "2025-09-11T10:51:39.082024Z",
        "fromLocation": "Afrit Amsterdam-Sloterdijk",
        "presentationType": "closed"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_5291",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            4.491433,
            52.130078
          ],
          [
            4.489834,
            52.129371
          ],
          [
            4.487599,
            52.128331
          ],
          [
            4.485664,
            52.12739
          ],
          [
            4.48331,
            52.126196
          ],
          [
            4.481308,
            52.125137
          ],
          [
            4.47935,
            52.12405
          ],
          [
            4.477307,
            52.122865
          ],
          [
            4.475796,
            52.121958
          ],
          [
            4.474196,
            52.120961
          ],
          [
            4.472379,
            52.119784
          ],
          [
            4.470495,
            52.11851
          ],
          [
            4.46876,
            52.117287
          ],
          [
            4.467182,
            52.116127
          ],
          [
            4.465751,
            52.115034
          ],
          [
            4.464687,
            52.114175
          ],
          [
            4.463888,
            52.11349
          ],
          [
            4.463616,
            52.113306
          ],
          [
            4.463125,
            52.112881
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856556_1",
        "type": "Verkeershinder",
        "cause": "",
        "trend": "EQUAL",
        "version": "1",
        "roadName": "Afrit Leidschendam",
        "causeType": "congestion",
        "delayBand": "NEGLIGIBLE",
        "startTime": "2025-09-11T11:12:28.759819Z",
        "roadNumber": "A4",
        "toLocation": "Afrit Leidschendam",
        "description": "Langzaam rijdend verkeer tussen Afrit Zoeterwoude-Dorp en Afrit Leidschendam",
        "queueLength": "2700",
        "versionTime": "2025-09-11T11:12:28.759819Z",
        "fromLocation": "Afrit Zoeterwoude-Dorp",
        "presentationType": "slow"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_5292",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            6.512154,
            52.36205
          ],
          [
            6.512158,
            52.362158
          ],
          [
            6.509945,
            52.362332
          ],
          [
            6.507587,
            52.362483
          ],
          [
            6.505097,
            52.362704
          ],
          [
            6.503954,
            52.362821
          ],
          [
            6.502203,
            52.36304
          ],
          [
            6.499261,
            52.363514
          ],
          [
            6.497579,
            52.36375
          ],
          [
            6.49644,
            52.363881
          ],
          [
            6.494425,
            52.364075
          ],
          [
            6.492485,
            52.364231
          ],
          [
            6.488667,
            52.364499
          ],
          [
            6.486098,
            52.364699
          ],
          [
            6.480129,
            52.365085
          ],
          [
            6.476371,
            52.365345
          ],
          [
            6.47268,
            52.36561
          ],
          [
            6.467413,
            52.366011
          ],
          [
            6.460981,
            52.366339
          ],
          [
            6.451605,
            52.366986
          ],
          [
            6.4496,
            52.367108
          ],
          [
            6.448712,
            52.367155
          ],
          [
            6.447533,
            52.367194
          ],
          [
            6.444475,
            52.367249
          ],
          [
            6.443395,
            52.367246
          ],
          [
            6.442222,
            52.367211
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004855675_1",
        "type": "Verkeers maatregel",
        "cause": "Wegwerkzaamheden",
        "version": "7",
        "roadName": "Aansluiting NS Nijverdal-West/Holterberg",
        "causeType": "carriagewayClosed",
        "startTime": "2025-09-10T19:13:00Z",
        "roadNumber": "N35",
        "toLocation": "Aansluiting NS Nijverdal-West/Holterberg",
        "description": "Rijbaan gesloten op de hoofdrijbaan tussen Aansluiting NS Nijverdal-West/Holterberg en Aansluiting Rijssen",
        "versionTime": "2025-09-11T10:35:18.395049Z",
        "fromLocation": "Aansluiting Rijssen",
        "presentationType": "closed"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_5293",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            4.437702,
            51.930821
          ],
          [
            4.439885,
            51.93153
          ],
          [
            4.440658,
            51.931816
          ],
          [
            4.441376,
            51.932123
          ],
          [
            4.443871,
            51.933285
          ],
          [
            4.444478,
            51.933551
          ],
          [
            4.444537,
            51.933542
          ],
          [
            4.445224,
            51.933821
          ],
          [
            4.446156,
            51.93414
          ],
          [
            4.447122,
            51.934409
          ],
          [
            4.447954,
            51.934594
          ],
          [
            4.449144,
            51.934821
          ],
          [
            4.452065,
            51.935301
          ],
          [
            4.452711,
            51.935429
          ],
          [
            4.453526,
            51.935624
          ],
          [
            4.45433,
            51.935857
          ],
          [
            4.455229,
            51.936162
          ],
          [
            4.46246,
            51.938865
          ],
          [
            4.46367,
            51.939259
          ],
          [
            4.464174,
            51.939403
          ],
          [
            4.464794,
            51.939557
          ],
          [
            4.466096,
            51.939829
          ],
          [
            4.467217,
            51.939997
          ],
          [
            4.468632,
            51.940178
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856540_1",
        "type": "Verkeershinder",
        "cause": "",
        "trend": "DECREASED",
        "version": "21",
        "roadName": "Ring Rotterdam",
        "causeType": "congestion",
        "delayBand": "NEGLIGIBLE",
        "startTime": "2025-09-11T10:52:28.215638Z",
        "roadNumber": "A20",
        "toLocation": "Knooppunt Terbregseplein",
        "description": "Langzaam rijdend verkeer tussen Knooppunt Terbregseplein en Knooppunt Kleinpolderplein",
        "queueLength": "2400",
        "versionTime": "2025-09-11T11:13:00.797991Z",
        "fromLocation": "Knooppunt Kleinpolderplein",
        "presentationType": "slow"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_5294",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            5.929375,
            51.95636
          ],
          [
            5.978122,
            51.981331
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856551_1",
        "type": "Verkeershinder",
        "cause": "",
        "trend": "INCREASED",
        "version": "3",
        "roadName": "Verkeersplein Velperbroek",
        "causeType": "congestion",
        "delayBand": "NEGLIGIBLE",
        "startTime": "2025-09-11T11:10:28.071004Z",
        "roadNumber": "N325",
        "toLocation": "Verkeersplein Velperbroek",
        "description": "Langzaam rijdend verkeer tussen Verkeersplein Velperbroek en Kruising Huissen",
        "queueLength": "2200",
        "versionTime": "2025-09-11T11:13:01.572569Z",
        "fromLocation": "Kruising Huissen",
        "presentationType": "slow"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_5295",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            4.787254,
            52.326263
          ],
          [
            4.788213,
            52.32644
          ],
          [
            4.789612,
            52.326744
          ],
          [
            4.790131,
            52.326832
          ],
          [
            4.791464,
            52.327193
          ],
          [
            4.792136,
            52.327393
          ],
          [
            4.793432,
            52.327814
          ],
          [
            4.794078,
            52.32804
          ],
          [
            4.794995,
            52.328383
          ],
          [
            4.796214,
            52.328885
          ],
          [
            4.797364,
            52.329413
          ],
          [
            4.79822,
            52.32984
          ],
          [
            4.799194,
            52.330368
          ],
          [
            4.799959,
            52.330817
          ],
          [
            4.800412,
            52.331049
          ],
          [
            4.802051,
            52.332078
          ],
          [
            4.802235,
            52.33222
          ],
          [
            4.802458,
            52.332337
          ],
          [
            4.807213,
            52.335247
          ],
          [
            4.80829,
            52.335872
          ],
          [
            4.809487,
            52.336534
          ],
          [
            4.810377,
            52.336914
          ],
          [
            4.811363,
            52.337266
          ],
          [
            4.812377,
            52.337568
          ],
          [
            4.812983,
            52.337722
          ],
          [
            4.813599,
            52.337859
          ],
          [
            4.814666,
            52.338046
          ],
          [
            4.815754,
            52.338182
          ],
          [
            4.816855,
            52.338269
          ],
          [
            4.818188,
            52.338313
          ],
          [
            4.8207,
            52.338316
          ],
          [
            4.821579,
            52.338278
          ],
          [
            4.83239,
            52.338184
          ],
          [
            4.832976,
            52.338213
          ],
          [
            4.83402,
            52.338189
          ],
          [
            4.834915,
            52.338157
          ],
          [
            4.835764,
            52.338095
          ],
          [
            4.836471,
            52.33803
          ],
          [
            4.837438,
            52.337918
          ],
          [
            4.838568,
            52.337752
          ],
          [
            4.840927,
            52.337335
          ],
          [
            4.841834,
            52.337204
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856527_1",
        "type": "Verkeershinder",
        "cause": "",
        "trend": "DECREASED",
        "version": "37",
        "roadName": "Knooppunt De Nieuwe Meer",
        "causeType": "congestion",
        "delayBand": "BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES",
        "startTime": "2025-09-11T10:36:28.117484Z",
        "roadNumber": "A4",
        "toLocation": "Knooppunt De Nieuwe Meer",
        "description": "Stilstaand verkeer tussen Knooppunt De Nieuwe Meer en Knooppunt Badhoevedorp",
        "queueLength": "4500",
        "versionTime": "2025-09-11T11:13:00.923589Z",
        "fromLocation": "Knooppunt Badhoevedorp",
        "presentationType": "stationary"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_5296",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            4.723645,
            51.590294
          ],
          [
            4.723871,
            51.592467
          ],
          [
            4.723934,
            51.593337
          ],
          [
            4.723955,
            51.594218
          ],
          [
            4.723921,
            51.595024
          ],
          [
            4.723827,
            51.595881
          ],
          [
            4.723631,
            51.59688
          ],
          [
            4.723402,
            51.597717
          ],
          [
            4.723023,
            51.598791
          ],
          [
            4.721019,
            51.60357
          ],
          [
            4.72045,
            51.604778
          ],
          [
            4.719718,
            51.606177
          ],
          [
            4.719052,
            51.607333
          ],
          [
            4.717999,
            51.609011
          ],
          [
            4.714208,
            51.614487
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856530_1",
        "type": "Verkeershinder",
        "cause": "Defecte vrachtwagen",
        "trend": "DECREASED",
        "version": "34",
        "roadName": "Markbrug",
        "causeType": "truckProblem",
        "delayBand": "NEGLIGIBLE",
        "startTime": "2025-09-11T10:40:27.818944Z",
        "roadNumber": "A16",
        "toLocation": "Markbrug",
        "description": "Stilstaand verkeer tussen Markbrug en Knooppunt Princeville",
        "queueLength": "2800",
        "versionTime": "2025-09-11T11:13:00.508889Z",
        "fromLocation": "Knooppunt Princeville",
        "presentationType": "stationary"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_5297",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            5.602416,
            52.169106
          ],
          [
            5.599835,
            52.168964
          ],
          [
            5.596822,
            52.168823
          ],
          [
            5.592327,
            52.16866
          ],
          [
            5.587284,
            52.168543
          ],
          [
            5.581172,
            52.168464
          ],
          [
            5.577373,
            52.168355
          ],
          [
            5.5748,
            52.168248
          ],
          [
            5.572331,
            52.168118
          ],
          [
            5.569844,
            52.16796
          ],
          [
            5.567085,
            52.167754
          ],
          [
            5.564936,
            52.167572
          ],
          [
            5.561685,
            52.167256
          ],
          [
            5.559052,
            52.166966
          ],
          [
            5.55686,
            52.166702
          ],
          [
            5.554588,
            52.166404
          ],
          [
            5.53738,
            52.164026
          ],
          [
            5.534808,
            52.163703
          ],
          [
            5.533123,
            52.163517
          ],
          [
            5.53139,
            52.163353
          ],
          [
            5.530255,
            52.163263
          ],
          [
            5.528727,
            52.163165
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856522_1",
        "type": "Verkeershinder",
        "cause": "",
        "trend": "DECREASED",
        "version": "43",
        "roadName": "Afrit Hoevelaken",
        "causeType": "congestion",
        "delayBand": "BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES",
        "startTime": "2025-09-11T10:30:27.947064Z",
        "roadNumber": "A1",
        "toLocation": "Afrit Hoevelaken",
        "description": "Stilstaand verkeer tussen Afrit Stroe en Afrit Hoevelaken",
        "queueLength": "5100",
        "versionTime": "2025-09-11T11:13:00.585400Z",
        "fromLocation": "Afrit Stroe",
        "presentationType": "stationary"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_5298",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            6.109301,
            51.929241
          ],
          [
            6.165913,
            51.898357
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856444_1",
        "type": "Verkeershinder",
        "cause": "Door grenscontrole",
        "trend": "INCREASED",
        "version": "176",
        "roadName": "Grensovergang Duitsland",
        "causeType": "congestion",
        "delayBand": "BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES",
        "startTime": "2025-09-11T08:18:27.913200Z",
        "roadNumber": "A12",
        "toLocation": "Grensovergang Duitsland",
        "description": "Stilstaand verkeer tussen Grensovergang Duitsland en Afrit Zevenaar",
        "queueLength": "4800",
        "versionTime": "2025-09-11T11:13:00.364788Z",
        "fromLocation": "Afrit Zevenaar",
        "presentationType": "stationary"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_5299",
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          6.023767,
          52.48591
        ]
      },
      "properties": {
        "id": "NLRWS_0004780839_1",
        "type": "Verkeers maatregel",
        "cause": "Wegwerkzaamheden",
        "version": "357",
        "roadName": "Verbindingsweg A50 vanuit Apeldoorn",
        "causeType": "carriagewayClosed",
        "startTime": "2025-07-09T17:26:00Z",
        "roadNumber": "A50",
        "description": "Rijbaan gesloten op de verbindingsweg A50 vanuit Apeldoorn",
        "versionTime": "2025-09-11T10:35:21.830610Z",
        "presentationType": "closed"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_529a",
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          5.707449,
          51.854836
        ]
      },
      "properties": {
        "id": "NLRWS_0004846114_1",
        "type": "Verkeers maatregel",
        "cause": "Wegwerkzaamheden",
        "version": "37",
        "roadName": "Verbindingsweg A50 vanuit Eindhoven",
        "causeType": "carriagewayClosed",
        "startTime": "2025-09-04T16:33:00Z",
        "roadNumber": "A50",
        "description": "Rijbaan gesloten op de verbindingsweg A50 vanuit Eindhoven",
        "versionTime": "2025-09-11T10:35:20.975520Z",
        "presentationType": "closed"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_529b",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            5.754685,
            50.958506
          ],
          [
            5.765906,
            50.963145
          ],
          [
            5.768412,
            50.964148
          ],
          [
            5.769567,
            50.964572
          ],
          [
            5.771094,
            50.965079
          ],
          [
            5.77219,
            50.965406
          ],
          [
            5.773798,
            50.965834
          ],
          [
            5.774863,
            50.966088
          ],
          [
            5.775995,
            50.966332
          ],
          [
            5.777843,
            50.96667
          ],
          [
            5.77925,
            50.966881
          ],
          [
            5.780375,
            50.967025
          ],
          [
            5.781484,
            50.967142
          ],
          [
            5.782624,
            50.967241
          ],
          [
            5.784555,
            50.967352
          ],
          [
            5.785652,
            50.967381
          ],
          [
            5.786347,
            50.967374
          ],
          [
            5.786986,
            50.96735
          ],
          [
            5.787846,
            50.967287
          ],
          [
            5.788718,
            50.967191
          ],
          [
            5.789527,
            50.967066
          ],
          [
            5.790394,
            50.966895
          ],
          [
            5.791477,
            50.966627
          ],
          [
            5.792427,
            50.966338
          ],
          [
            5.79325,
            50.966039
          ],
          [
            5.794093,
            50.965684
          ],
          [
            5.794848,
            50.965344
          ],
          [
            5.795049,
            50.965209
          ],
          [
            5.79596,
            50.964777
          ],
          [
            5.797509,
            50.964008
          ],
          [
            5.804147,
            50.960138
          ],
          [
            5.810897,
            50.956005
          ],
          [
            5.811993,
            50.955431
          ],
          [
            5.812874,
            50.955014
          ],
          [
            5.813668,
            50.954671
          ],
          [
            5.814369,
            50.954389
          ],
          [
            5.829049,
            50.948617
          ],
          [
            5.8302,
            50.948166
          ],
          [
            5.830941,
            50.947898
          ],
          [
            5.831557,
            50.947702
          ],
          [
            5.832354,
            50.947482
          ],
          [
            5.832952,
            50.94734
          ],
          [
            5.833688,
            50.947189
          ],
          [
            5.834855,
            50.946994
          ],
          [
            5.841041,
            50.946049
          ],
          [
            5.841603,
            50.945948
          ],
          [
            5.842274,
            50.945793
          ],
          [
            5.842663,
            50.945682
          ],
          [
            5.843163,
            50.945516
          ],
          [
            5.843886,
            50.945224
          ],
          [
            5.847683,
            50.943439
          ],
          [
            5.848422,
            50.943108
          ],
          [
            5.848897,
            50.942919
          ],
          [
            5.849392,
            50.942749
          ],
          [
            5.850199,
            50.94253
          ],
          [
            5.850841,
            50.942402
          ],
          [
            5.851672,
            50.942277
          ],
          [
            5.858649,
            50.941431
          ],
          [
            5.859701,
            50.941287
          ],
          [
            5.860521,
            50.941157
          ],
          [
            5.867924,
            50.939859
          ],
          [
            5.868599,
            50.939715
          ],
          [
            5.869305,
            50.939537
          ],
          [
            5.87008,
            50.93931
          ],
          [
            5.870848,
            50.939049
          ],
          [
            5.871574,
            50.938765
          ],
          [
            5.876991,
            50.936516
          ],
          [
            5.878023,
            50.936036
          ],
          [
            5.878896,
            50.935559
          ],
          [
            5.879742,
            50.935011
          ],
          [
            5.880401,
            50.934512
          ],
          [
            5.881018,
            50.933962
          ],
          [
            5.881406,
            50.933564
          ],
          [
            5.881899,
            50.93299
          ],
          [
            5.885662,
            50.928113
          ],
          [
            5.885922,
            50.927743
          ],
          [
            5.88876,
            50.922984
          ],
          [
            5.889344,
            50.922098
          ],
          [
            5.889851,
            50.921396
          ],
          [
            5.891105,
            50.919785
          ],
          [
            5.891659,
            50.91911
          ],
          [
            5.892143,
            50.918648
          ],
          [
            5.892613,
            50.918295
          ],
          [
            5.893182,
            50.917933
          ],
          [
            5.893626,
            50.91768
          ],
          [
            5.89642,
            50.916194
          ],
          [
            5.897523,
            50.915678
          ],
          [
            5.898418,
            50.915318
          ],
          [
            5.89915,
            50.915066
          ],
          [
            5.899896,
            50.914839
          ],
          [
            5.914146,
            50.910782
          ],
          [
            5.915523,
            50.910355
          ],
          [
            5.916886,
            50.909865
          ],
          [
            5.918338,
            50.90926
          ],
          [
            5.919036,
            50.908937
          ],
          [
            5.919905,
            50.908455
          ],
          [
            5.920092,
            50.908399
          ],
          [
            5.921031,
            50.907877
          ],
          [
            5.922033,
            50.907245
          ],
          [
            5.922942,
            50.906608
          ],
          [
            5.923919,
            50.905832
          ],
          [
            5.9248,
            50.905045
          ],
          [
            5.925348,
            50.904498
          ],
          [
            5.934349,
            50.895106
          ],
          [
            5.935936,
            50.893536
          ],
          [
            5.937633,
            50.891951
          ],
          [
            5.938762,
            50.890944
          ],
          [
            5.939968,
            50.88991
          ],
          [
            5.946093,
            50.884843
          ],
          [
            5.947299,
            50.883791
          ],
          [
            5.94838,
            50.882809
          ],
          [
            5.950142,
            50.881132
          ],
          [
            5.951331,
            50.879928
          ],
          [
            5.952535,
            50.878651
          ],
          [
            5.955235,
            50.875698
          ],
          [
            5.957043,
            50.873855
          ],
          [
            5.958295,
            50.872655
          ],
          [
            5.959692,
            50.871382
          ],
          [
            5.962851,
            50.868656
          ],
          [
            5.963688,
            50.8679
          ],
          [
            5.964847,
            50.866813
          ],
          [
            5.965888,
            50.86578
          ],
          [
            5.966649,
            50.864983
          ],
          [
            5.9678,
            50.863699
          ],
          [
            5.96871,
            50.86261
          ],
          [
            5.969448,
            50.861671
          ],
          [
            5.970886,
            50.859708
          ],
          [
            5.973575,
            50.855852
          ],
          [
            5.974261,
            50.854923
          ],
          [
            5.974857,
            50.854166
          ],
          [
            5.975451,
            50.853454
          ],
          [
            5.976174,
            50.852651
          ],
          [
            5.97693,
            50.85189
          ],
          [
            5.977883,
            50.851027
          ],
          [
            5.978939,
            50.850183
          ],
          [
            5.979603,
            50.849701
          ],
          [
            5.980399,
            50.849165
          ],
          [
            5.981303,
            50.848605
          ],
          [
            5.981789,
            50.848324
          ],
          [
            5.983169,
            50.847594
          ],
          [
            5.984106,
            50.847169
          ],
          [
            5.987294,
            50.845841
          ],
          [
            5.987993,
            50.845533
          ],
          [
            5.999185,
            50.840896
          ],
          [
            5.99985,
            50.840606
          ],
          [
            6.001053,
            50.840039
          ],
          [
            6.002443,
            50.839303
          ],
          [
            6.00341,
            50.838727
          ],
          [
            6.004508,
            50.838002
          ],
          [
            6.005236,
            50.837474
          ],
          [
            6.005771,
            50.837058
          ],
          [
            6.006411,
            50.836522
          ],
          [
            6.00715,
            50.835847
          ],
          [
            6.024534,
            50.818733
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856528_1",
        "type": "Verkeers maatregel",
        "cause": "Door grenscontrole",
        "version": "1",
        "roadName": "Grensovergang Duitsland",
        "causeType": "carriagewayClosed",
        "startTime": "2025-09-11T10:38:25.740596Z",
        "roadNumber": "A76",
        "toLocation": "Grensovergang Duitsland",
        "description": "Rijbaan gesloten op de hoofdrijbaan tussen Grensovergang Duitsland en Grensovergang Nederland",
        "versionTime": "2025-09-11T10:38:25.740596Z",
        "fromLocation": "Grensovergang Nederland",
        "presentationType": "closed"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_529c",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            4.793427,
            52.393358
          ],
          [
            4.800687,
            52.393357
          ],
          [
            4.802359,
            52.393313
          ],
          [
            4.803493,
            52.39325
          ],
          [
            4.805085,
            52.39311
          ],
          [
            4.806307,
            52.392962
          ],
          [
            4.807259,
            52.392826
          ],
          [
            4.810281,
            52.392354
          ],
          [
            4.811906,
            52.392134
          ],
          [
            4.81364,
            52.391964
          ],
          [
            4.814488,
            52.391906
          ],
          [
            4.815416,
            52.391862
          ],
          [
            4.816325,
            52.391837
          ],
          [
            4.817928,
            52.391824
          ],
          [
            4.832789,
            52.391831
          ],
          [
            4.833638,
            52.391846
          ],
          [
            4.834514,
            52.391913
          ],
          [
            4.835485,
            52.392054
          ],
          [
            4.836412,
            52.392262
          ],
          [
            4.837134,
            52.39248
          ],
          [
            4.837937,
            52.392789
          ],
          [
            4.838405,
            52.393007
          ],
          [
            4.838891,
            52.39327
          ],
          [
            4.840226,
            52.394129
          ],
          [
            4.840821,
            52.394468
          ],
          [
            4.841517,
            52.394799
          ],
          [
            4.842975,
            52.395409
          ],
          [
            4.843359,
            52.395593
          ],
          [
            4.843856,
            52.395865
          ],
          [
            4.844266,
            52.396123
          ],
          [
            4.844559,
            52.396332
          ],
          [
            4.845055,
            52.396739
          ],
          [
            4.845427,
            52.397107
          ],
          [
            4.84613,
            52.397896
          ],
          [
            4.846656,
            52.398447
          ],
          [
            4.847102,
            52.398861
          ],
          [
            4.848273,
            52.399847
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004833912_1",
        "type": "Verkeers maatregel",
        "cause": "Wegwerkzaamheden",
        "version": "71",
        "roadName": "Westrandweg",
        "causeType": "carriagewayClosed",
        "startTime": "2025-08-28T12:50:00Z",
        "roadNumber": "A5",
        "toLocation": "Knooppunt Westrandweg",
        "description": "Rijbaan gesloten op de hoofdrijbaan tussen Knooppunt Westrandweg en Afrit Amsterdam-Westpoort",
        "versionTime": "2025-09-11T10:51:36.533715Z",
        "fromLocation": "Afrit Amsterdam-Westpoort",
        "presentationType": "closed"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_529d",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            5.995165,
            50.842563
          ],
          [
            5.99942,
            50.840795
          ],
          [
            6.000603,
            50.840258
          ],
          [
            6.001671,
            50.839723
          ],
          [
            6.002654,
            50.839183
          ],
          [
            6.00381,
            50.838472
          ],
          [
            6.004867,
            50.837747
          ],
          [
            6.005771,
            50.837058
          ],
          [
            6.00667,
            50.836293
          ],
          [
            6.007365,
            50.835639
          ],
          [
            6.024534,
            50.818733
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856525_1",
        "type": "Verkeershinder",
        "cause": "Door grenscontrole",
        "trend": "INCREASED",
        "version": "41",
        "roadName": "Grensovergang Duitsland",
        "causeType": "congestion",
        "delayBand": "BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES",
        "startTime": "2025-09-11T10:33:27.541721Z",
        "roadNumber": "A76",
        "toLocation": "Grensovergang Duitsland",
        "description": "Stilstaand verkeer tussen Grensovergang Duitsland en Knooppunt Kunderberg",
        "queueLength": "3400",
        "versionTime": "2025-09-11T11:13:01.324502Z",
        "fromLocation": "Knooppunt Kunderberg",
        "presentationType": "stationary"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_529e",
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          5.567449,
          52.16766
        ]
      },
      "properties": {
        "id": "NLRWS_0004856547_1",
        "type": "Verkeers maatregel",
        "cause": "Ongeval(len)",
        "version": "1",
        "roadName": "Onbekende weg",
        "causeType": "carriagewayClosed",
        "startTime": "2025-09-11T11:00:40.842891Z",
        "roadNumber": "?",
        "description": "Rijbaan gesloten op de afrit",
        "versionTime": "2025-09-11T11:00:40.842891Z",
        "presentationType": "closed"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_529f",
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          6.165913,
          51.898357
        ]
      },
      "properties": {
        "id": "NLRWS_0004856460_1",
        "type": "Verkeers maatregel",
        "cause": "Door grenscontrole",
        "version": "4",
        "roadName": "Onbekende weg",
        "causeType": "carriagewayClosed",
        "startTime": "2025-09-11T08:56:34.688019Z",
        "roadNumber": "?",
        "description": "Rijbaan gesloten op de hoofdrijbaan",
        "versionTime": "2025-09-11T11:08:03.566100Z",
        "presentationType": "closed"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_52a0",
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          7.043839,
          52.31377
        ]
      },
      "properties": {
        "id": "NLRWS_0004856521_1",
        "type": "Verkeers maatregel",
        "cause": "Door grenscontrole",
        "version": "3",
        "roadName": "Onbekende weg",
        "causeType": "carriagewayClosed",
        "startTime": "2025-09-11T10:30:30.091732Z",
        "roadNumber": "?",
        "description": "Rijbaan gesloten op de hoofdrijbaan",
        "versionTime": "2025-09-11T11:08:05.891687Z",
        "presentationType": "closed"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_52a1",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            4.755506,
            51.526143
          ],
          [
            4.757151,
            51.526171
          ],
          [
            4.758744,
            51.526229
          ],
          [
            4.760484,
            51.526333
          ],
          [
            4.762235,
            51.526484
          ],
          [
            4.763923,
            51.526672
          ],
          [
            4.765612,
            51.526904
          ],
          [
            4.767025,
            51.527132
          ],
          [
            4.769041,
            51.527496
          ],
          [
            4.770404,
            51.527793
          ],
          [
            4.771667,
            51.528096
          ],
          [
            4.773005,
            51.528448
          ],
          [
            4.774645,
            51.528922
          ],
          [
            4.776966,
            51.529643
          ],
          [
            4.780755,
            51.530861
          ],
          [
            4.785239,
            51.532341
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856557_1",
        "type": "Verkeershinder",
        "cause": "",
        "trend": "EQUAL",
        "version": "1",
        "roadName": "Afrit Ulvenhout",
        "causeType": "congestion",
        "delayBand": "NEGLIGIBLE",
        "startTime": "2025-09-11T11:12:28.759819Z",
        "roadNumber": "A58",
        "toLocation": "Afrit Ulvenhout",
        "description": "Langzaam rijdend verkeer tussen Afrit Ulvenhout en Knooppunt Galder",
        "queueLength": "2200",
        "versionTime": "2025-09-11T11:12:28.759819Z",
        "fromLocation": "Knooppunt Galder",
        "presentationType": "slow"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_52a2",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            4.842002,
            52.370987
          ],
          [
            4.842493,
            52.354287
          ],
          [
            4.842479,
            52.353928
          ],
          [
            4.842512,
            52.352474
          ],
          [
            4.842452,
            52.3517
          ],
          [
            4.842282,
            52.35094
          ],
          [
            4.841981,
            52.350137
          ],
          [
            4.841408,
            52.348925
          ],
          [
            4.841188,
            52.348382
          ],
          [
            4.84097,
            52.347591
          ],
          [
            4.840871,
            52.346916
          ],
          [
            4.840861,
            52.345963
          ],
          [
            4.84093,
            52.344434
          ],
          [
            4.840885,
            52.344075
          ],
          [
            4.840881,
            52.342591
          ],
          [
            4.840938,
            52.341409
          ],
          [
            4.841,
            52.340781
          ],
          [
            4.841154,
            52.339894
          ],
          [
            4.84132,
            52.339218
          ],
          [
            4.841487,
            52.338738
          ],
          [
            4.841651,
            52.338465
          ],
          [
            4.841912,
            52.338168
          ],
          [
            4.842291,
            52.337875
          ],
          [
            4.84272,
            52.337636
          ],
          [
            4.843266,
            52.337426
          ],
          [
            4.843645,
            52.337327
          ],
          [
            4.844119,
            52.337239
          ],
          [
            4.844748,
            52.337178
          ],
          [
            4.845281,
            52.337169
          ],
          [
            4.846555,
            52.337217
          ],
          [
            4.847059,
            52.33721
          ],
          [
            4.852752,
            52.337514
          ],
          [
            4.853341,
            52.337513
          ],
          [
            4.858793,
            52.337798
          ],
          [
            4.859022,
            52.337823
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856489_1",
        "type": "Verkeershinder",
        "cause": "Defect voertuig",
        "trend": "INCREASED",
        "version": "98",
        "roadName": "Knooppunt De Nieuwe Meer",
        "causeType": "congestion",
        "delayBand": "BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES",
        "startTime": "2025-09-11T09:37:27.478102Z",
        "roadNumber": "A10",
        "toLocation": "Knooppunt De Nieuwe Meer",
        "description": "Stilstaand verkeer tussen Afrit Amsterdam-De Baarsjes en Knooppunt De Nieuwe Meer",
        "queueLength": "4800",
        "versionTime": "2025-09-11T11:13:00.294583Z",
        "fromLocation": "Afrit Amsterdam-De Baarsjes",
        "presentationType": "stationary"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_52a3",
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          5.71942,
          51.856205
        ]
      },
      "properties": {
        "id": "NLRWS_0004839335_1",
        "type": "Verkeers maatregel",
        "cause": "Wegwerkzaamheden",
        "version": "53",
        "roadName": "Onbekende weg",
        "causeType": "carriagewayClosed",
        "startTime": "2025-09-01T12:34:00Z",
        "roadNumber": "?",
        "description": "Rijbaan gesloten op de hoofdrijbaan",
        "versionTime": "2025-09-11T10:35:22.962224Z",
        "presentationType": "closed"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_52a4",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            6.442231,
            52.367121
          ],
          [
            6.443955,
            52.367159
          ],
          [
            6.445946,
            52.367167
          ],
          [
            6.448195,
            52.367116
          ],
          [
            6.450428,
            52.367014
          ],
          [
            6.461796,
            52.366235
          ],
          [
            6.4633,
            52.366154
          ],
          [
            6.466476,
            52.366011
          ],
          [
            6.467643,
            52.365942
          ],
          [
            6.475841,
            52.365329
          ],
          [
            6.484855,
            52.364723
          ],
          [
            6.485772,
            52.364647
          ],
          [
            6.487378,
            52.364472
          ],
          [
            6.488942,
            52.364333
          ],
          [
            6.492971,
            52.364043
          ],
          [
            6.494661,
            52.363963
          ],
          [
            6.495301,
            52.363924
          ],
          [
            6.496274,
            52.363841
          ],
          [
            6.49753,
            52.363699
          ],
          [
            6.498373,
            52.363587
          ],
          [
            6.499426,
            52.36343
          ],
          [
            6.501673,
            52.363061
          ],
          [
            6.503527,
            52.362814
          ],
          [
            6.504972,
            52.362662
          ],
          [
            6.509012,
            52.362294
          ],
          [
            6.510633,
            52.362118
          ],
          [
            6.511221,
            52.362068
          ],
          [
            6.512153,
            52.362015
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004855674_1",
        "type": "Verkeers maatregel",
        "cause": "Wegwerkzaamheden",
        "version": "7",
        "roadName": "Aansluiting Rijssen",
        "causeType": "carriagewayClosed",
        "startTime": "2025-09-10T19:10:00Z",
        "roadNumber": "N35",
        "toLocation": "Aansluiting Rijssen",
        "description": "Rijbaan gesloten op de hoofdrijbaan tussen Aansluiting NS Nijverdal-West/Holterberg en Aansluiting Rijssen",
        "versionTime": "2025-09-11T10:35:19.984052Z",
        "fromLocation": "Aansluiting NS Nijverdal-West/Holterberg",
        "presentationType": "closed"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_52a5",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            5.678796,
            51.812378
          ],
          [
            5.683443,
            51.828717
          ],
          [
            5.683739,
            51.829672
          ],
          [
            5.6842,
            51.83086
          ],
          [
            5.684534,
            51.831583
          ],
          [
            5.684815,
            51.832129
          ],
          [
            5.685252,
            51.832896
          ],
          [
            5.685566,
            51.833398
          ],
          [
            5.686274,
            51.834419
          ],
          [
            5.686815,
            51.835113
          ],
          [
            5.687407,
            51.835813
          ],
          [
            5.68795,
            51.836404
          ],
          [
            5.688689,
            51.837151
          ],
          [
            5.705555,
            51.853129
          ],
          [
            5.70736,
            51.85476
          ],
          [
            5.708807,
            51.856
          ],
          [
            5.714952,
            51.861046
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856511_1",
        "type": "Verkeershinder",
        "cause": "Opruimwerkzaamheden",
        "trend": "INCREASED",
        "version": "60",
        "roadName": "Knooppunt Ewijk",
        "causeType": "congestion",
        "delayBand": "BETWEEN_TEN_MINUTES_AND_THIRTY_MINUTES",
        "startTime": "2025-09-11T10:16:28.300662Z",
        "roadNumber": "A50",
        "toLocation": "Knooppunt Ewijk",
        "description": "Stilstaand verkeer tussen Knooppunt Ewijk en Knooppunt Bankhoef",
        "queueLength": "6100",
        "versionTime": "2025-09-11T11:13:01.075146Z",
        "fromLocation": "Knooppunt Bankhoef",
        "presentationType": "stationary"
      }
    },
    {
      "id": "fid-144f1395_1993763d922_52a6",
      "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [
            4.807177,
            51.822461
          ],
          [
            4.80889,
            51.822068
          ],
          [
            4.810017,
            51.821827
          ],
          [
            4.810879,
            51.821664
          ],
          [
            4.811461,
            51.821571
          ],
          [
            4.812111,
            51.821481
          ],
          [
            4.813253,
            51.821358
          ],
          [
            4.814673,
            51.821239
          ],
          [
            4.815563,
            51.821189
          ],
          [
            4.816454,
            51.821166
          ],
          [
            4.817324,
            51.821171
          ],
          [
            4.82916,
            51.821654
          ],
          [
            4.830025,
            51.821709
          ],
          [
            4.830853,
            51.821785
          ],
          [
            4.831792,
            51.821903
          ],
          [
            4.832787,
            51.822065
          ],
          [
            4.834096,
            51.822328
          ],
          [
            4.840168,
            51.823655
          ],
          [
            4.841207,
            51.82386
          ],
          [
            4.841995,
            51.823984
          ],
          [
            4.842976,
            51.824098
          ],
          [
            4.843732,
            51.82416
          ],
          [
            4.849782,
            51.824523
          ]
        ]
      },
      "properties": {
        "id": "NLRWS_0004856552_1",
        "type": "Verkeershinder",
        "cause": "",
        "trend": "EQUAL",
        "version": "2",
        "roadName": "Afrit Hardinxveld-Giessendam",
        "causeType": "congestion",
        "delayBand": "NEGLIGIBLE",
        "startTime": "2025-09-11T11:11:28.571713Z",
        "roadNumber": "A15",
        "toLocation": "Afrit Hardinxveld-Giessendam",
        "description": "Stilstaand verkeer tussen Afrit Hardinxveld-Giessendam en Afrit Sliedrecht-Oost",
        "queueLength": "2900",
        "versionTime": "2025-09-11T11:13:00.431927Z",
        "fromLocation": "Afrit Sliedrecht-Oost",
        "presentationType": "stationary"
      }
    }
  ]
}