Initially added similarity matrices

This commit is contained in:
2022-12-14 11:33:13 +01:00
parent 0ecf066315
commit aa9c025369
7 changed files with 162 additions and 27 deletions

View File

@@ -0,0 +1,4 @@
type_street_slope, flat, ascending, decending
flat, 1.0, 0.5, 0.6
ascending, 0.5, 1.0, 0.3
decending, 0.6, 0.3, 1.0
1 type_street_slope flat ascending decending
2 flat 1.0 0.5 0.6
3 ascending 0.5 1.0 0.3
4 decending 0.6 0.3 1.0

3
data/street_type_sim.csv Normal file
View File

@@ -0,0 +1,3 @@
type_street, country_road (separated), autobahn
country_road (separated), 1.0, 0.5
autobahn, 0.5, 1.0
1 type_street country_road (separated) autobahn
2 country_road (separated) 1.0 0.5
3 autobahn 0.5 1.0

5
data/time_type_sim.csv Normal file
View File

@@ -0,0 +1,5 @@
type_time, night, dusk, day, dawn
night, 1.0, 0.5, 0.6, 0.8
dusk, 0.5, 1.0, 0.3, 0.5
day, 0.6, 0.3, 1.0, 0.6
dawn, 0.8, 0.5, 0.6, 1.0
1 type_time night dusk day dawn
2 night 1.0 0.5 0.6 0.8
3 dusk 0.5 1.0 0.3 0.5
4 day 0.6 0.3 1.0 0.6
5 dawn 0.8 0.5 0.6 1.0

View File

@@ -0,0 +1,5 @@
type_vehicle, car, motorcycle, sportscar, truck
car, 1.0, 0.5, 0.6, 0.8
motorcycle, 0.5, 1.0, 0.3, 0.5
sportscar, 0.6, 0.3, 1.0, 0.6
truck, 0.8, 0.5, 0.6, 1.0
1 type_vehicle car motorcycle sportscar truck
2 car 1.0 0.5 0.6 0.8
3 motorcycle 0.5 1.0 0.3 0.5
4 sportscar 0.6 0.3 1.0 0.6
5 truck 0.8 0.5 0.6 1.0

View File

@@ -0,0 +1,5 @@
type_weather, dry, rain, fog, snow_ice
dry, 1.0, 0.5, 0.6, 0.8
rain, 0.5, 1.0, 0.3, 0.5
fog, 0.6, 0.3, 1.0, 0.6
snow_ice, 0.8, 0.5, 0.6, 1.0
1 type_weather dry rain fog snow_ice
2 dry 1.0 0.5 0.6 0.8
3 rain 0.5 1.0 0.3 0.5
4 fog 0.6 0.3 1.0 0.6
5 snow_ice 0.8 0.5 0.6 1.0