Commit 77e24364 authored by hammad zafar's avatar hammad zafar
Browse files

update diurnal traffic patterns with more appropriate values in meep-vis-traffic-mgr

parent 269e1bb6
Loading
Loading
Loading
Loading
+25 −25
Original line number Diff line number Diff line
@@ -75,34 +75,34 @@ var yamlFile []byte
// Category-wise Traffic Loads
var categoriesLoads = map[string]map[string]int32{
	"commercial": {
		"0000-0300": 1,
		"0300-0600": 3,
		"0600-0900": 8,
		"0900-1200": 12,
		"1200-1500": 15,
		"1500-1800": 10,
		"1800-2100": 5,
		"2100-2400": 2,
		"0000-0300": 50,
		"0300-0600": 50,
		"0600-0900": 75,
		"0900-1200": 100,
		"1200-1500": 125,
		"1500-1800": 100,
		"1800-2100": 75,
		"2100-2400": 50,
	},
	"residential": {
		"0000-0300": 5,
		"0300-0600": 2,
		"0600-0900": 10,
		"0900-1200": 8,
		"1200-1500": 5,
		"1500-1800": 12,
		"1800-2100": 15,
		"2100-2400": 8,
		"0000-0300": 125,
		"0300-0600": 125,
		"0600-0900": 100,
		"0900-1200": 75,
		"1200-1500": 50,
		"1500-1800": 50,
		"1800-2100": 125,
		"2100-2400": 125,
	},
	"coastal": {
		"0000-0300": 2,
		"0300-0600": 5,
		"0600-0900": 8,
		"0900-1200": 10,
		"1200-1500": 20,
		"1500-1800": 15,
		"1800-2100": 5,
		"2100-2400": 2,
		"0000-0300": 25,
		"0300-0600": 25,
		"0600-0900": 50,
		"0900-1200": 25,
		"1200-1500": 50,
		"1500-1800": 75,
		"1800-2100": 50,
		"2100-2400": 25,
	},
}