Report result

Service version: 1

Purpose

This document describes the results returned from the Area Analysis report, including the aggregated time series and geospatial data and properties of the analyzed region. Response format is GeoJSON.

Results overview

There are two results for each region geometry:

timedData

This contains time series-like data aggregated within the specified geometry. The data is categorized into various types, each represented by a specific shortcut. Below are the descriptions of each data type:

Data Key

Description

time

Time aggregation level. Possible values:

  • all - Whole period aggregation.
  • yearly - Annual aggregation.
  • monthly - Monthly aggregation.
  • daily - Daily aggregation.
  • hourly - Hourly aggregation.
l

NETWORK_LENGTH - Sum of all road network segments where data was provided.

c

CONGESTION_LEVEL - Average congestion is calculated by collecting all travel times recorded by TomTom during a given period in a specific area and comparing them with the lowest travel times from when traffic is in a completely fluid state. Congestion is expressed as a percentage, indicating the increase in travel time due to excess traffic. For example, a congestion level of 40 means that, on average, journey times across that area's road network were 40% greater than when traffic is free-flowing.

fv

FREE_FLOW_SPEED - Average free-flow travel times are based on static factors in each city, making the score relevant to that city's infrastructure and environment.

t

TRAVEL_TIME - Average travel time per 10 km.

v

SPEED - Average speed on the road network.

tiledData

This section contains data aggregated for the entire period and split for each Morton tile inside the geometry. The results are significantly simplified (rounded) for default access. Each tile represents a specific location within the analyzed geometry, providing insights based on localized data.

Data Key

Description

lat

Latitude - Latitude coordinate of the given aggregation tile.

lon

Longitude - Longitude coordinate of the given aggregation tile.

l

NETWORK_LENGTH - Sum of all road network segments where data was provided.

c

CONGESTION_LEVEL - Average congestion is calculated by collecting all travel times recorded by TomTom during a given period in a specific area and comparing them with the lowest travel times from when traffic is in a completely fluid state. Congestion is expressed as a percentage, indicating the increase in travel time due to excess traffic. For example, a congestion level of 40 means that, on average, journey times across that area's road network were 40% greater than when traffic is free-flowing.

fv

FREE_FLOW_SPEED - Average free-flow travel times are based on static factors in each city, making the score relevant to that city's infrastructure and environment.

t

TRAVEL_TIME - Average travel time per 10 km.

v

SPEED - Average speed on the road network.

Example

Here is a representation of a typical response structure for the analysis:

1{
2 "features": [
3 {
4 "geometry": {
5 "type": "Polygon",
6 "coordinates": [
7 [
8 [
9 4.8757,
10 52.3685
11 ],
12 [
13 4.8961,
14 52.3824
15 ],
16 [
17 4.9236,
18 52.3634
19 ],
20 [
21 4.8757,
22 52.3685
23 ]
24 ]
25 ]
26 },
27 "properties": {
28 "name": "Amsterdam",
29 "timezone": "Europe/Amsterdam",
30 "level": 19,
31 "timedData": {
32 "all": {
33 "time": "all",
34 "v": 22.2,
35 "fv": 27.4,
36 "c": 23.4,
37 "t": 27.0,
38 "l": 15.74
39 },
40 "yearly": [
41 {
42 "time": "2024-01-01T00:00",
43 "v": 22.2,
44 "fv": 27.4,
45 "c": 23.4,
46 "t": 27.0,
47 "l": 15.74
48 }
49 ],
50 "monthly": [
51 {
52 "time": "2024-08-01T00:00",
53 "v": 22.2,
54 "fv": 27.4,
55 "c": 23.4,
56 "t": 27.0,
57 "l": 15.74
58 }
59 ],
60 "daily": [
61 {
62 "time": "2024-08-06T00:00",
63 "v": 22.2,
64 "fv": 27.4,
65 "c": 23.4,
66 "t": 27.0,
67 "l": 15.74
68 }
69 ],
70 "hourly": [
71 {
72 "time": "2024-08-06T07:00",
73 "v": 23.7,
74 "fv": 27.2,
75 "c": 14.5,
76 "t": 25.2,
77 "l": 15.74
78 },
79 {
80 "time": "2024-08-06T08:00",
81 "v": 21.3,
82 "fv": 27.5,
83 "c": 29.0,
84 "t": 28.1,
85 "l": 15.74
86 }
87 ]
88 },
89 "tiledData": {
90 "tiles": [
91 {
92 "lat": 52.36822,
93 "lon": 4.87689,
94 "v": 20.0,
95 "fv": 20.0,
96 "c": 40.0,
97 "t": 50.0,
98 "l": 0.05
99 },
100 {
101 "lat": 52.36856,
102 "lon": 4.87552,
103 "v": 20.0,
104 "fv": 20.0,
105 "c": 40.0,
106 "t": 40.0,
107 "l": 0.05
108 },
109 ...
110 {
111 "lat": 52.36375,
112 "lon": 4.92359,
113 "v": 20.0,
114 "fv": 40.0,
115 "c": 20.0,
116 "t": 25.0,
117 "l": 0.05
118 }
119 ]
120 }
121 },
122 "type": "Feature"
123 }
124 ],
125 "properties": {
126 "startDate": "2024-08-06",
127 "endDate": "2024-08-06",
128 "dataTypes": [
129 "NETWORK_LENGTH",
130 "CONGESTION_LEVEL",
131 "FREE_FLOW_SPEED",
132 "TRAVEL_TIME",
133 "SPEED"
134 ],
135 "heatmap": false,
136 "frcs": [
137 0,
138 1,
139 2,
140 3,
141 4,
142 5
143 ],
144 "hours": [
145 7,
146 8
147 ]
148 },
149 "type": "FeatureCollection"
150}

Properties as input parameters

The properties section contains input parameters that were utilized in the report. These parameters are critical for understanding the context of the analysis:

  • startDate: The starting date for the analysis (e.g., "2024-08-06").
  • endDate: The ending date for the analysis (e.g., "2024-08-06").
  • dataTypes: An array of data types included in the report analysis, such as "NETWORK_LENGTH", "CONGESTION_LEVEL", etc.
  • heatmap: A boolean indicating whether the heatmap is simplified, depending on access.
  • frcs: An array representing the Functional Road Classes (e.g., [0, 1, 2, 3, 4, 5]).
  • hours: An array of integers representing the hours analyzed (e.g., [7, 8]).

These properties provide important context for the results and help to interpret the analysis effectively.