@@ -5,74 +5,74 @@ |
||
5 | 5 | |
6 | 6 | class RouteParameters extends Common |
7 | 7 | { |
8 | - public $is_upload; |
|
9 | - public $rt; |
|
10 | - public $route_name; |
|
11 | - public $route_date; |
|
12 | - public $route_time; |
|
13 | - public $shared_publicly; |
|
14 | - public $disable_optimization; |
|
15 | - public $optimize; |
|
16 | - public $lock_last; |
|
17 | - public $vehicle_capacity; |
|
18 | - public $vehicle_max_distance_mi; |
|
19 | - public $distance_unit; |
|
20 | - public $travel_mode; |
|
21 | - public $avoid; |
|
22 | - public $vehicle_id; |
|
23 | - public $dev_lat; |
|
24 | - public $dev_lng; |
|
25 | - public $route_max_duration; |
|
26 | - public $route_email; |
|
27 | - public $route_type = "api"; |
|
28 | - public $store_route = true; |
|
29 | - public $metric; |
|
30 | - public $algorithm_type; |
|
31 | - public $member_id; |
|
32 | - public $ip; |
|
33 | - public $dm; |
|
34 | - public $dirm; |
|
35 | - public $parts; |
|
36 | - public $device_id; |
|
37 | - public $device_type; |
|
38 | - public $has_trailer; |
|
39 | - public $trailer_weight_t; |
|
40 | - public $limited_weight_t; |
|
41 | - public $weight_per_axle_t; |
|
42 | - public $truck_height_meters; |
|
43 | - public $truck_width_meters; |
|
44 | - public $truck_length_meters; |
|
45 | - public $truck_hazardous_goods; |
|
8 | + public $is_upload; |
|
9 | + public $rt; |
|
10 | + public $route_name; |
|
11 | + public $route_date; |
|
12 | + public $route_time; |
|
13 | + public $shared_publicly; |
|
14 | + public $disable_optimization; |
|
15 | + public $optimize; |
|
16 | + public $lock_last; |
|
17 | + public $vehicle_capacity; |
|
18 | + public $vehicle_max_distance_mi; |
|
19 | + public $distance_unit; |
|
20 | + public $travel_mode; |
|
21 | + public $avoid; |
|
22 | + public $vehicle_id; |
|
23 | + public $dev_lat; |
|
24 | + public $dev_lng; |
|
25 | + public $route_max_duration; |
|
26 | + public $route_email; |
|
27 | + public $route_type = "api"; |
|
28 | + public $store_route = true; |
|
29 | + public $metric; |
|
30 | + public $algorithm_type; |
|
31 | + public $member_id; |
|
32 | + public $ip; |
|
33 | + public $dm; |
|
34 | + public $dirm; |
|
35 | + public $parts; |
|
36 | + public $device_id; |
|
37 | + public $device_type; |
|
38 | + public $has_trailer; |
|
39 | + public $trailer_weight_t; |
|
40 | + public $limited_weight_t; |
|
41 | + public $weight_per_axle_t; |
|
42 | + public $truck_height_meters; |
|
43 | + public $truck_width_meters; |
|
44 | + public $truck_length_meters; |
|
45 | + public $truck_hazardous_goods; |
|
46 | 46 | |
47 | - public $vehicle_max_cargo_weight; |
|
48 | - public $vehicle_max_cargo_volume; |
|
49 | - public $subtour_max_revenue; |
|
50 | - public $avoidance_zones; |
|
51 | - public $driver_id; |
|
52 | - public $parts_min; |
|
53 | - public $first_drive_then_wait_between_stops; |
|
54 | - public $truck_height; |
|
55 | - public $truck_width; |
|
56 | - public $truck_length; |
|
57 | - public $optimization_quality; |
|
58 | - public $override_addresses; |
|
59 | - public $max_tour_size; |
|
60 | - public $min_tour_size; |
|
61 | - public $uturn; |
|
62 | - public $leftturn; |
|
63 | - public $rightturn; |
|
47 | + public $vehicle_max_cargo_weight; |
|
48 | + public $vehicle_max_cargo_volume; |
|
49 | + public $subtour_max_revenue; |
|
50 | + public $avoidance_zones; |
|
51 | + public $driver_id; |
|
52 | + public $parts_min; |
|
53 | + public $first_drive_then_wait_between_stops; |
|
54 | + public $truck_height; |
|
55 | + public $truck_width; |
|
56 | + public $truck_length; |
|
57 | + public $optimization_quality; |
|
58 | + public $override_addresses; |
|
59 | + public $max_tour_size; |
|
60 | + public $min_tour_size; |
|
61 | + public $uturn; |
|
62 | + public $leftturn; |
|
63 | + public $rightturn; |
|
64 | 64 | |
65 | - public $optimized_callback_url; |
|
65 | + public $optimized_callback_url; |
|
66 | 66 | |
67 | - public static function fromArray(array $params) |
|
68 | - { |
|
69 | - $routeParams = new RouteParameters(); |
|
70 | - foreach ($params as $key => $value) { |
|
71 | - if (property_exists($routeParams, $key)) { |
|
72 | - $routeParams->{$key} = $value; |
|
73 | - } |
|
74 | - } |
|
67 | + public static function fromArray(array $params) |
|
68 | + { |
|
69 | + $routeParams = new RouteParameters(); |
|
70 | + foreach ($params as $key => $value) { |
|
71 | + if (property_exists($routeParams, $key)) { |
|
72 | + $routeParams->{$key} = $value; |
|
73 | + } |
|
74 | + } |
|
75 | 75 | |
76 | - return $routeParams; |
|
77 | - } |
|
76 | + return $routeParams; |
|
77 | + } |
|
78 | 78 | } |
@@ -4,17 +4,17 @@ |
||
4 | 4 | |
5 | 5 | class Common |
6 | 6 | { |
7 | - public static function getValue($array, $item, $default = null) |
|
8 | - { |
|
9 | - return (isset($array[$item])) ? $array[$item] : $default; |
|
10 | - } |
|
7 | + public static function getValue($array, $item, $default = null) |
|
8 | + { |
|
9 | + return (isset($array[$item])) ? $array[$item] : $default; |
|
10 | + } |
|
11 | 11 | |
12 | - public function toArray() |
|
13 | - { |
|
14 | - $params = array_filter(get_object_vars($this), function($item) { |
|
15 | - return ($item!==null) && !(is_array($item) && !count($item)); |
|
16 | - }); |
|
12 | + public function toArray() |
|
13 | + { |
|
14 | + $params = array_filter(get_object_vars($this), function($item) { |
|
15 | + return ($item!==null) && !(is_array($item) && !count($item)); |
|
16 | + }); |
|
17 | 17 | |
18 | - return $params; |
|
19 | - } |
|
18 | + return $params; |
|
19 | + } |
|
20 | 20 | } |
@@ -26,22 +26,22 @@ discard block |
||
26 | 26 | |
27 | 27 | $addresses = array(); |
28 | 28 | foreach ($json as $address) { |
29 | - $addresses[] = Address::fromArray($address); |
|
29 | + $addresses[] = Address::fromArray($address); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | $parameters = RouteParameters::fromArray(array( |
33 | - "algorithm_type" => Algorithmtype::CVRP_TW_SD, |
|
34 | - "route_name" => "Multiple Depot, Multiple Driver with 24 Stops, Time Window", |
|
35 | - "route_date" => time() + 24*60*60, |
|
36 | - "route_time" => 60 * 60 * 7, |
|
37 | - "distance_unit" => DistanceUnit::MILES, |
|
38 | - "device_type" => DeviceType::WEB, |
|
39 | - "optimize" => OptimizationType::DISTANCE, |
|
40 | - "metric" => Metric::GEODESIC, |
|
41 | - "route_max_duration" => 86400, |
|
42 | - "travel_mode" => TravelMode::DRIVING, |
|
43 | - "vehicle_capacity" => 1, |
|
44 | - "vehicle_max_distance_mi" => 10000 |
|
33 | + "algorithm_type" => Algorithmtype::CVRP_TW_SD, |
|
34 | + "route_name" => "Multiple Depot, Multiple Driver with 24 Stops, Time Window", |
|
35 | + "route_date" => time() + 24*60*60, |
|
36 | + "route_time" => 60 * 60 * 7, |
|
37 | + "distance_unit" => DistanceUnit::MILES, |
|
38 | + "device_type" => DeviceType::WEB, |
|
39 | + "optimize" => OptimizationType::DISTANCE, |
|
40 | + "metric" => Metric::GEODESIC, |
|
41 | + "route_max_duration" => 86400, |
|
42 | + "travel_mode" => TravelMode::DRIVING, |
|
43 | + "vehicle_capacity" => 1, |
|
44 | + "vehicle_max_distance_mi" => 10000 |
|
45 | 45 | )); |
46 | 46 | |
47 | 47 | $optimizationParams = new OptimizationProblemParams; |
@@ -51,11 +51,11 @@ discard block |
||
51 | 51 | $problem = OptimizationProblem::optimize($optimizationParams); |
52 | 52 | |
53 | 53 | foreach ((array)$problem as $key => $value) { |
54 | - if (is_string($value)) { |
|
55 | - echo $key." --> ".$value."<br>"; |
|
56 | - } else { |
|
57 | - echo "************ $key ************* <br>"; |
|
58 | - Route4Me::simplePrint((array)$value, true); |
|
59 | - echo "******************************* <br>"; |
|
60 | - } |
|
54 | + if (is_string($value)) { |
|
55 | + echo $key." --> ".$value."<br>"; |
|
56 | + } else { |
|
57 | + echo "************ $key ************* <br>"; |
|
58 | + Route4Me::simplePrint((array)$value, true); |
|
59 | + echo "******************************* <br>"; |
|
60 | + } |
|
61 | 61 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | $parameters = RouteParameters::fromArray(array( |
33 | 33 | "algorithm_type" => Algorithmtype::CVRP_TW_SD, |
34 | 34 | "route_name" => "Multiple Depot, Multiple Driver with 24 Stops, Time Window", |
35 | - "route_date" => time() + 24*60*60, |
|
35 | + "route_date" => time() + 24 * 60 * 60, |
|
36 | 36 | "route_time" => 60 * 60 * 7, |
37 | 37 | "distance_unit" => DistanceUnit::MILES, |
38 | 38 | "device_type" => DeviceType::WEB, |
@@ -26,18 +26,18 @@ |
||
26 | 26 | |
27 | 27 | $addresses = array(); |
28 | 28 | foreach ($json as $address) { |
29 | - $addresses[] = Address::fromArray($address); |
|
29 | + $addresses[] = Address::fromArray($address); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | $parameters = RouteParameters::fromArray(array( |
33 | - "algorithm_type" => AlgorithmType::TSP, |
|
34 | - "distance_unit" => DistanceUnit::MILES, |
|
35 | - "device_type" => DeviceType::WEB, |
|
36 | - "optimize" => OptimizationType::DISTANCE, |
|
37 | - "travel_mode" => TravelMode::DRIVING, |
|
38 | - "route_max_duration" => 86400, |
|
39 | - "vehicle_capacity" => 1, |
|
40 | - "vehicle_max_distance_mi" => 10000 |
|
33 | + "algorithm_type" => AlgorithmType::TSP, |
|
34 | + "distance_unit" => DistanceUnit::MILES, |
|
35 | + "device_type" => DeviceType::WEB, |
|
36 | + "optimize" => OptimizationType::DISTANCE, |
|
37 | + "travel_mode" => TravelMode::DRIVING, |
|
38 | + "route_max_duration" => 86400, |
|
39 | + "vehicle_capacity" => 1, |
|
40 | + "vehicle_max_distance_mi" => 10000 |
|
41 | 41 | )); |
42 | 42 | |
43 | 43 | $optimizationParams = new OptimizationProblemParams; |
@@ -26,20 +26,20 @@ |
||
26 | 26 | |
27 | 27 | $addresses = array(); |
28 | 28 | foreach ($json as $address) { |
29 | - $addresses[] = Address::fromArray($address); |
|
29 | + $addresses[] = Address::fromArray($address); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | $parameters = RouteParameters::fromArray(array( |
33 | - "algorithm_type" => AlgorithmType::CVRP_TW_SD, |
|
34 | - "distance_unit" => DistanceUnit::MILES, |
|
35 | - "device_type" => DeviceType::WEB, |
|
36 | - "optimize" => OptimizationType::DISTANCE, |
|
37 | - "metric" => Metric::GEODESIC, |
|
38 | - "route_max_duration" => 86400 * 2, |
|
39 | - "travel_mode" => TravelMode::DRIVING, |
|
40 | - "vehicle_capacity" => 50, |
|
41 | - "vehicle_max_distance_mi" => 10000, |
|
42 | - "parts" => 50 |
|
33 | + "algorithm_type" => AlgorithmType::CVRP_TW_SD, |
|
34 | + "distance_unit" => DistanceUnit::MILES, |
|
35 | + "device_type" => DeviceType::WEB, |
|
36 | + "optimize" => OptimizationType::DISTANCE, |
|
37 | + "metric" => Metric::GEODESIC, |
|
38 | + "route_max_duration" => 86400 * 2, |
|
39 | + "travel_mode" => TravelMode::DRIVING, |
|
40 | + "vehicle_capacity" => 50, |
|
41 | + "vehicle_max_distance_mi" => 10000, |
|
42 | + "parts" => 50 |
|
43 | 43 | )); |
44 | 44 | |
45 | 45 | $optimizationParams = new OptimizationProblemParams; |
@@ -25,18 +25,18 @@ discard block |
||
25 | 25 | |
26 | 26 | $addresses = array(); |
27 | 27 | foreach ($json as $address) { |
28 | - $addresses[] = Address::fromArray($address); |
|
28 | + $addresses[] = Address::fromArray($address); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | $parameters = RouteParameters::fromArray(array( |
32 | - "algorithm_type" => Algorithmtype::TSP, |
|
33 | - "route_name" => "Single Driver Multiple TimeWindows 12 Stops", |
|
34 | - "route_date" => time() + 24 * 60 * 60, |
|
35 | - "route_time" => 5 * 3600 + 30 * 60, |
|
36 | - "distance_unit" => DistanceUnit::MILES, |
|
37 | - "device_type" => DeviceType::WEB, |
|
38 | - "optimize" => OptimizationType::DISTANCE, |
|
39 | - "metric" => Metric::GEODESIC |
|
32 | + "algorithm_type" => Algorithmtype::TSP, |
|
33 | + "route_name" => "Single Driver Multiple TimeWindows 12 Stops", |
|
34 | + "route_date" => time() + 24 * 60 * 60, |
|
35 | + "route_time" => 5 * 3600 + 30 * 60, |
|
36 | + "distance_unit" => DistanceUnit::MILES, |
|
37 | + "device_type" => DeviceType::WEB, |
|
38 | + "optimize" => OptimizationType::DISTANCE, |
|
39 | + "metric" => Metric::GEODESIC |
|
40 | 40 | )); |
41 | 41 | |
42 | 42 | $optimizationParams = new OptimizationProblemParams; |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | $problem = OptimizationProblem::optimize($optimizationParams); |
47 | 47 | |
48 | 48 | foreach ((array)$problem as $key => $value) { |
49 | - if (is_string($value)) { |
|
50 | - echo $key." --> ".$value."<br>"; |
|
51 | - } else { |
|
52 | - echo "************ $key ************* <br>"; |
|
53 | - Route4Me::simplePrint((array)$value, true); |
|
54 | - echo "******************************* <br>"; |
|
55 | - } |
|
49 | + if (is_string($value)) { |
|
50 | + echo $key." --> ".$value."<br>"; |
|
51 | + } else { |
|
52 | + echo "************ $key ************* <br>"; |
|
53 | + Route4Me::simplePrint((array)$value, true); |
|
54 | + echo "******************************* <br>"; |
|
55 | + } |
|
56 | 56 | } |
@@ -26,24 +26,24 @@ discard block |
||
26 | 26 | |
27 | 27 | $addresses = array(); |
28 | 28 | foreach ($json as $address) { |
29 | - $addresses[] = Address::fromArray($address); |
|
29 | + $addresses[] = Address::fromArray($address); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | $parameters = RouteParameters::fromArray(array( |
33 | - "algorithm_type" => Algorithmtype::CVRP_TW_SD, |
|
34 | - "route_name" => "Single Depot, Multiple Driver, No Time Window", |
|
35 | - "route_date" => time() + 24 * 60 * 60, |
|
36 | - "route_time" => 60 * 60 * 7, |
|
37 | - "rt" => TRUE, |
|
38 | - "distance_unit" => DistanceUnit::MILES, |
|
39 | - "device_type" => DeviceType::WEB, |
|
40 | - "optimize" => OptimizationType::TIME, |
|
41 | - "metric" => Metric::GEODESIC, |
|
42 | - "route_max_duration" => 86400, |
|
43 | - "travel_mode" => TravelMode::DRIVING, |
|
44 | - "vehicle_capacity" => 20, |
|
45 | - "vehicle_max_distance_mi" => 99999, |
|
46 | - "parts" => 4 |
|
33 | + "algorithm_type" => Algorithmtype::CVRP_TW_SD, |
|
34 | + "route_name" => "Single Depot, Multiple Driver, No Time Window", |
|
35 | + "route_date" => time() + 24 * 60 * 60, |
|
36 | + "route_time" => 60 * 60 * 7, |
|
37 | + "rt" => TRUE, |
|
38 | + "distance_unit" => DistanceUnit::MILES, |
|
39 | + "device_type" => DeviceType::WEB, |
|
40 | + "optimize" => OptimizationType::TIME, |
|
41 | + "metric" => Metric::GEODESIC, |
|
42 | + "route_max_duration" => 86400, |
|
43 | + "travel_mode" => TravelMode::DRIVING, |
|
44 | + "vehicle_capacity" => 20, |
|
45 | + "vehicle_max_distance_mi" => 99999, |
|
46 | + "parts" => 4 |
|
47 | 47 | )); |
48 | 48 | |
49 | 49 | $optimizationParams = new OptimizationProblemParams; |
@@ -53,11 +53,11 @@ discard block |
||
53 | 53 | $problem = OptimizationProblem::optimize($optimizationParams); |
54 | 54 | |
55 | 55 | foreach ((array)$problem as $key => $value) { |
56 | - if (is_string($value)) { |
|
57 | - echo $key." --> ".$value."<br>"; |
|
58 | - } else { |
|
59 | - echo "************ $key ************* <br>"; |
|
60 | - Route4Me::simplePrint((array)$value, true); |
|
61 | - echo "******************************* <br>"; |
|
62 | - } |
|
56 | + if (is_string($value)) { |
|
57 | + echo $key." --> ".$value."<br>"; |
|
58 | + } else { |
|
59 | + echo "************ $key ************* <br>"; |
|
60 | + Route4Me::simplePrint((array)$value, true); |
|
61 | + echo "******************************* <br>"; |
|
62 | + } |
|
63 | 63 | } |
@@ -27,19 +27,19 @@ discard block |
||
27 | 27 | $addresses = array(); |
28 | 28 | |
29 | 29 | foreach ($json as $address) { |
30 | - $addresses[] = Address::fromArray($address); |
|
30 | + $addresses[] = Address::fromArray($address); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | $parameters = RouteParameters::fromArray(array( |
34 | - "algorithm_type" => AlgorithmType::TSP, |
|
35 | - "distance_unit" => DistanceUnit::MILES, |
|
36 | - "device_type" => DeviceType::WEB, |
|
37 | - "optimize" => OptimizationType::DISTANCE, |
|
38 | - "travel_mode" => TravelMode::DRIVING, |
|
39 | - "route_max_duration" => 86400, |
|
40 | - "vehicle_capacity" => 1, |
|
41 | - "vehicle_max_distance_mi" => 10000, |
|
42 | - "rt" => true |
|
34 | + "algorithm_type" => AlgorithmType::TSP, |
|
35 | + "distance_unit" => DistanceUnit::MILES, |
|
36 | + "device_type" => DeviceType::WEB, |
|
37 | + "optimize" => OptimizationType::DISTANCE, |
|
38 | + "travel_mode" => TravelMode::DRIVING, |
|
39 | + "route_max_duration" => 86400, |
|
40 | + "vehicle_capacity" => 1, |
|
41 | + "vehicle_max_distance_mi" => 10000, |
|
42 | + "rt" => true |
|
43 | 43 | )); |
44 | 44 | |
45 | 45 | $optimizationParams = new OptimizationProblemParams; |
@@ -49,11 +49,11 @@ discard block |
||
49 | 49 | $problems = OptimizationProblem::optimize($optimizationParams); |
50 | 50 | |
51 | 51 | foreach ($problems as $problem) { |
52 | - if (is_array($problem) || is_object($problem)) { |
|
53 | - foreach ($problem as $key => $value) { |
|
54 | - if (!is_object($value)) { |
|
55 | - echo $key." --> ".$value."<br>"; |
|
56 | - } |
|
57 | - } |
|
58 | - } |
|
52 | + if (is_array($problem) || is_object($problem)) { |
|
53 | + foreach ($problem as $key => $value) { |
|
54 | + if (!is_object($value)) { |
|
55 | + echo $key." --> ".$value."<br>"; |
|
56 | + } |
|
57 | + } |
|
58 | + } |
|
59 | 59 | } |
@@ -13,9 +13,9 @@ |
||
13 | 13 | Route4Me::setApiKey('11111111111111111111111111111111'); |
14 | 14 | |
15 | 15 | $recordParameters = Member::fromArray(array( |
16 | - 'device_id' => '546546516', |
|
17 | - 'device_type' => 'IPAD', |
|
18 | - 'format' => 'json', |
|
16 | + 'device_id' => '546546516', |
|
17 | + 'device_type' => 'IPAD', |
|
18 | + 'format' => 'json', |
|
19 | 19 | )); |
20 | 20 | |
21 | 21 | $member = new Member(); |