Updated similarity matrices

This commit is contained in:
Administrator 2022-12-22 18:33:49 +01:00
parent 28d17d5c35
commit 70cab97cfc
5 changed files with 15 additions and 15 deletions

View File

@ -1,4 +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
flat, 1.0, 0.3, 0.7
ascending, 0.3, 1.0, 0.1
decending, 0.7, 0.1, 1.0
1 type_street_slope flat ascending decending
2 flat 1.0 0.5 0.3 0.6 0.7
3 ascending 0.5 0.3 1.0 0.3 0.1
4 decending 0.6 0.7 0.3 0.1 1.0

View File

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

View File

@ -1,5 +1,5 @@
type_time, night, dusk, day, dawn
night, 1.0, 0.5, 0.6, 0.8
night, 1.0, 0.5, 0.2, 0.8
dusk, 0.5, 1.0, 0.3, 0.5
day, 0.6, 0.3, 1.0, 0.6
day, 0.2, 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.2 0.8
3 dusk 0.5 1.0 0.3 0.5
4 day 0.6 0.2 0.3 1.0 0.6
5 dawn 0.8 0.5 0.6 1.0

View File

@ -1,5 +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
car, 1.0, 0.3, 0.6, 0.3
motorcycle, 0.3, 1.0, 0.9, 0.1
sportscar, 0.6, 0.9, 1.0, 0.2
truck, 0.3, 0.1, 0.2, 1.0
1 type_vehicle car motorcycle sportscar truck
2 car 1.0 0.5 0.3 0.6 0.8 0.3
3 motorcycle 0.5 0.3 1.0 0.3 0.9 0.5 0.1
4 sportscar 0.6 0.3 0.9 1.0 0.6 0.2
5 truck 0.8 0.3 0.5 0.1 0.6 0.2 1.0

View File

@ -1,5 +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
dry, 1.0, 0.4, 0.2, 0.1
rain, 0.4, 1.0, 0.8, 0.6
fog, 0.2, 0.8, 1.0, 0.4
snow_ice, 0.1, 0.6, 0.4, 1.0
1 type_weather dry rain fog snow_ice
2 dry 1.0 0.5 0.4 0.6 0.2 0.8 0.1
3 rain 0.5 0.4 1.0 0.3 0.8 0.5 0.6
4 fog 0.6 0.2 0.3 0.8 1.0 0.6 0.4
5 snow_ice 0.8 0.1 0.5 0.6 0.6 0.4 1.0