Next Article in Journal
Visual IoT Security: Data Hiding in AMBTC Images Using Block-Wise Embedding Strategy
Next Article in Special Issue
A Proof of Concept of a Mobile Health Application to Support Professionals in a Portuguese Nursing Home
Previous Article in Journal
Change Detection of Optical Remote Sensing Image Disturbed by Thin Cloud Using Wavelet Coefficient Substitution Algorithm
Previous Article in Special Issue
Positioning Information Privacy in Intelligent Transportation Systems: An Overview and Future Perspective
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Optimal Path Planning for Selective Waste Collection in Smart Cities

by
María-Victoria Bueno-Delgado
1,2,*,
José-Luis Romero-Gázquez
1,
Pilar Jiménez
3 and
Pablo Pavón-Mariño
1,2
1
Telecommunication Networks Engineering Group (GIRTEL), Department of Communications and Information Technologies, Technical University of Cartagena, 30202 Cartagena, Spain
2
E-lighthouse Network Solutions, 30203 Cartagena, Spain
3
Transportation Engineering Group, Department of Civil Engineering, Technical University of Cartagena, 30202 Cartagena, Spain
*
Author to whom correspondence should be addressed.
Sensors 2019, 19(9), 1973; https://doi.org/10.3390/s19091973
Submission received: 11 March 2019 / Revised: 17 April 2019 / Accepted: 24 April 2019 / Published: 27 April 2019
(This article belongs to the Special Issue Architectures and Platforms for Smart and Sustainable Cities)

Abstract

:
Waste collection is one of the targets of smart cities. It is a daily task in urban areas and it entails the planning of waste truck routes, taking into account environmental, economic and social factors. In this work, an optimal path planning algorithm has been developed together with a practical software platform for smart and sustainable cities that enables computing the optimal waste collection routes, minimizing the impact, both environmental (CO2 emissions and acoustic damage) and socioeconomic (number of trucks to be used and fuel consumption). The algorithm is executed in Net2Plan, an open-source planning tool, typically used for modeling and planning communication networks. Net2Plan facilitates the introduction of the city layout input information to the algorithm, automatically importing it from geographical information system (GIS) databases using the so-called Net2Plan-GIS library, which can also include positions of smart bins. The algorithm, Net2Plan tool and its extension are open-source, available in a public repository. A practical case in the city of Cartagena (Spain) is presented, where the optimal path planning for plastic waste collection is addressed. This work contributes to the urban mobility plans of smart cities and could be extended to other smart cities scenarios with requests of optimal path planning.

1. Introduction

Many cities around the world pursue becoming smart cities, making use of information and communication technologies (ICTs) to tackle those problems emerging in dense urban areas: pollution, traffic jam, waste management, recycling or sustainability policies [1,2,3].
Waste collection is one of the targets of smart cities and it has been gaining attention in recent years [4,5]. Waste collection is a daily task in urban areas that entails the planning of waste truck routes, taking into account environmental, economic and social factors. Routes should be planned to avoid traffic jams or acoustic impacts, to minimize fuel costs and CO2 emissions, while maximizing the amount of waste collected per route. The latter entails knowing the level of waste in containers. Some solutions have been proposed using Internet of Things (IoT) devices to measure the fill level in containers and to send this data through the Internet to a server for decision-making [6,7,8,9,10].
In an ideal scenario, the truck routes planned for waste collection should not be static, but adapted to the dynamism of cities, that is, street cuts, re-arrangements of street directions, traffic variation or the varying fill level of waste containers, among others. The latter could vary according to the day or by unexpected changes, for instance the opening of shopping centers, restaurants, etc.
In this work, an optimal path planning algorithm has been developed with the aim of computing the optimal waste collection routes in cities with different time schedulers (by hours, days, weeks, etc.) minimizing the environmental and socioeconomic impact. The algorithm solves an integer linear programming (ILP) problem, fed by:
-
City layout given by a Geographical Information System (GIS) database, that includes information of roads, location of containers in streets.
-
Number of trucks available and their capacity.
-
Capacity and filling level in containers collected by smart devices (e.g., sensors with general packet radio service (GPRS) module) attached to waste containers.
-
Fill level threshold, which fixes the set of containers that must be emptied.
The algorithm can be also fed by those constraints imposed by the scenario under study (street cut, daily/nightly schedule, etc.).
  • Using the above information, the algorithm jointly calculates the optimal number of trucks to use and the path they have to follow for collecting the waste of those containers with a fill level equal or higher than the threshold, minimizing the routes (total distance in km), which are directly related to fuel consumption, amount of CO2 emissions and waste collected.
Our proposal has been implemented as a Net2Plan [11,12] algorithm. Net2Plan is an open-source tool designed for the modeling and planning of communication networks. The ILP inside our algorithm is solved using JOM (Java Optimization Modeler) [13], a free and open-source Java library for modeling optimization programs and interfacing with solver libraries that produce numerical solutions for them. A use case is presented in the city of Cartagena (Spain), where the optimal path planning for plastic waste collection is solved. The city layout information has been imported into Net2Plan using the Net2Plan-GIS extension [14]. Net2Plan-GIS enables the management of data to and from GIS databases.
The algorithm proposed in this work is free available in a public repository [15] as well as Net2Plan [16] and Net2Plan-GIS [17]. This work contributes to the urban mobility plans of smart cities for optimal waste collection and could be extended to other smart cities scenarios with requests of optimal path planning: optimal routes for bicycle lines, optimal routes of municipal buses, etc.
The rest of the paper is organized as follows: Section 2 summarizes the related work. Section 3 explains the algorithm developed. Section 4 describes the case study. Section 5 presents the parameters formulation. In Section 6 the results are discussed. Finally, Section 7 concludes.

2. Related Work

In the last few decades, several studies have been conducted addressing the so-called vehicle routing problem (VRP) or capacity VRP (CVRP) [18]. VRP/CVRP are aimed at computing the shortest routes (time, distance, cost) for a group of vehicles, meeting some requirements, i.e., routes start and end in the same point, streets are traversed only once, a set of streets must be visited, vehicle capacity constraints, etc.
Some works in the scientific literature address the VRP/CVRP problem with algorithms that solve an ILP or mixed-integer linear programming (MILP) problem [9,19,20]. Despite their accurate results, the computational complexity (nondeterministic polynomial hard problems or NP-hard problems) makes them unaffordable for problem instances of medium-large size. To overcome this barrier many heuristic and meta-heuristic approaches were proposed [21,22,23,24,25,26,27,28]. Some examples are those based on nearest neighborhood search [21], ant colony optimization [22], genetic algorithms [23], particle swarm optimization [24] or Tabu search [25].
From the above algorithms, only a few have other features that add the flexibility required in the waste collection in real cities. That is, to permit setting as input in the algorithm different start and end points in the routes, to set the maximum number of times a street can be traversed by a vehicle, or to jointly decide the number of trucks to use and the route followed by each of them. Our work covers also these aspects. In addition, our scheme is integrated into an open source software framework that gives practical access to input data from GIS databases. This has been used to conduct a realistic use case, where we study the benefits of utilizing smart bins and assess the effect of applying different thresholds to decide when to collect the bins.
Table 1 summarizes these features for the set of algorithms reviewed in this section and the algorithm proposed in this work (***). The comparison shows that most of the algorithms reviewed are based on heuristic or metaheuristic models and seek to minimize the length of the routes. Only in [24] the algorithm maximizes the total waste collected, while in [25] authors present a bi-objective model with the aim at minimizing the total cost of transport, which depends on the vehicle used and length of routes, while maximizing the quality of service, given by a function that measures the accumulation of residues in streets. The algorithm proposed in this work aims at minimizing the total cost of a waste collection decision, which depends on (i) variable costs growing linearly with the length of the routes and (ii) fixed costs, depending on the number of trucks used.
Regarding the use as input data from GIS or smart bins, only the works in [9,21] and the algorithm proposed in this work, make use of both technologies. Algorithms constraints are also reviewed to show if they permit to configure the times a vehicle can pass through a street. Finally, we identify those algorithms that provide as output in the algorithm the number of trucks to use.
The algorithm proposed in this work is aimed at minimizing cost of waste collection and includes all the features reviewed. Although it is modeled as an ILP, the computational complexity is low because the input data in the algorithm (capacity of vehicles, capacity of bins and threshold) help to reduce the number of decision variables. In summary, the main contributions of this work are:
  • The proposal of an optimization algorithm that jointly optimizes the number of trucks to use and their routes, also permitting setting constraints on the number of times a street can be traversed, e.g., to limit the acoustic impact in the neighborhood.
  • Our algorithm integrates into the Net2Plan-GIS open-source framework. This facilitates introducing GIS information into the problem, applying the algorithm in real-life use cases. In addition, the framework automatically computes a number of economic and environmental performances like fuel consumption or CO2 emissions.
  • To showcase the practical interest of our proposal, we present a realistic use case in the city of Cartagena (Spain), where we assess the benefits of using smart bins in the waste collection in a part of the city. Our algorithm is used to evaluate the effects of applying different fill level thresholds for deciding when to collect a bin and the benefits of optimizing also the number of trucks to be used.

3. Optimal Path Planning Algorithm for Waste Collection

An ILP problem has been implemented as a Net2Plan algorithm [12,13] to solve the path planning for waste collection in a city. The problem is formulated to solve how many trucks have to be used to collect the waste to minimize the length of routes, giving also the routes each truck has to cover.
The data of the city infrastructures are taken as input (from GIS databases) to represent the city as a graph G = (N, E):
-
E is the set of roads in the city (or area under study). Each road in the street is denoted as a one-way link e E. The length (in km) of each link is denoted as l e ,   e E .
-
N is the set of intersections among roads. Each intersection is denoted as a node n N.   n N, there is a set of incoming links δ(n) and outgoing links δ+(n).
-
The location (streets, roads) of those containers with a fill level equal or higher than a threshold is managed as a subset of E, denoted as E’. Without loss of generality, each link is assumed to have at most one container. Modeling multiple containers is possible by transforming the link into a concatenation of as many links as containers.
Other data are taken as input parameters:
-
T: maximum number of trucks to use, t {1, 2, …, T}.
-
B: maximum length in km that a truck is allowed to traverse.
-
S: cost of using a truck in the route understood as the cost of truck maintenance and driver salary.
-
M: cost per km travelled by a truck.
-
Z: collection threshold.
-
p e ,   e E : percentage of waste per container (filling percentage).
-
c e ,   e E :   container capacity.
-
a e ,   e E : maximum number of truck passes allowed in road e.
-
C t ,   t T : truck capacity.
-
ns N: origin node of trucks’ routes.
-
nf N: destination node of trucks’ routes.
The ILP formulation is given as follows:
Decision variables
y t :   { 1   i f   t r u c k   t   i s   u s e d   i n   t h e   w a s t e   c o l l e c t i o n 0   o t h e r w i s e   t T
w t e :   { 1   i f   t r u c k   t   c o l l e c t s   w a s t e   o f   c o n t a i n e r   i n   e 0   o t h e r w i s e       e E , t T
x t e :   { N u m b e r   o f   t i m e s   t r u c k   t   t r a v e r s e s   l i n k   e   i n   i t s   p a t h   e E , t T
x t e ' e : { 1   i f   t r u c k   t   i s   t r a v e r s i n g   l i n k   e   i n   i t s   p a t h      f r o m   o r i g i n   n o d e   t o   b i n   i n   e , 0   o t h e r w i s e   t T ,   e E ,   e E '
Objective function
min ( M · t e x t e · l e +   S · t y t   )
Constraints
e l e x t e   B · y t    t T ,   e E
w t e x t e    e E , t T
t w t e = 1    e E
x t e e x t e    t T , e E , e E
e Є δ + ( n ) x t e e Є δ ( n ) x t e =   { y t   i f   n = n s    y t   i f   n = n f   0   o t h e r w i s e       n N ,   t T .  
e Є δ + ( n ) x t e ' e e Є δ ( n ) x t e ' e =   { w t e '   i f   n = n s   w t e '   i f   n   =   b ( e ) 0   o t h e r w i s e            t T , e E ,   n N
e w t e · c e C t · y t   t T
t x t e a e   e E
The ILP is shown in the set of Equation (1). The decision variables yt (1a) are set to 1 if a truck t T is used to collect waste, or 0 otherwise. The decision variables wte (1b) are set to 1 if a truck t collects the waste of container placed in e E’, or 0 otherwise. The decision variables xte represent the number of times a truck t goes through a link e.
The ILP is based on the flow-link formulation [29] for modeling the inherent routing problem. A variation of it is presented to avoid solutions with isolated cycles, a possible outcome in regular flow-link formulations consisting of a cyclic path not connected to truck origin or destination node. To forbid such solutions, that are not realizable by a truck in reality, we use two flow-link formulations. The first is represented by xte variables (1c), which will produce the path followed by each truck t. In its turn, xte’e variables (1d) represent the sub-path of each truck from the origin node, to the end node where each bin is, if the truck is passing through it. The sub-path will have to traverse only streets in the path. That is, a link belongs to a sub-path of the truck, only if the same link is part of the path.
The objective function (1e) seeks to minimize the cost, given by a term proportional to the distances of the routes of the trucks, plus a fixed cost of each truck just for using it to collect waste. Constraints in (1f) ensure that if a truck t is not used to collect the waste, it cannot pass through any link in the network and also permits limiting the total length one single truck can follow (B). Constraints in (1g) ensure that if a truck does not pass through a link, it cannot collect the waste of the container placed in that link. Constraints in (1h) ensure that each container with a fill level equal or higher than a threshold will be collected by one truck. Constraints in (1i) mean that if a truck does not pass through a link, no sub-path of the same truck passes through that link. Constraints in (1j) and (1k) are the two sets of flow conservation constraints for the path and sub-path of the trucks. (1j) are the regular flow conservation versions, that define the path of the truck over the streets. Constraints (1k) define the sub-paths. If a truck t passes through a link e’ with a bin, then there should be a path (described by xte’e variables) from the truck origin node, to end node of e’, using only the streets actually traversed by the truck. Constraints in (1l) limit the maximum amount of waste that each truck can collect. Finally, constraint (1m) permit addressing the acoustic impact in each street: allows to limit the maximum number of times that a truck (summing all the trucks) pass through each street.
Note that the algorithm in Equation (1) takes into account street cuts and rearrangements of street directions since Net2Plan manages the sets E and E’ from the data processed by Net2Plan-GIS plugin, importing updated data from the GIS database of the city.

4. Case Study: Optimal Waste Collection in Cartagena City

This section explains the case study carried out in Cartagena city (Spain), in four subsections. The first one introduces the planning tools used, the second one explains the features of the area under study and how it is managed in the planning tool and the rest presents the features assumed about trucks and waste containers.

4.1. Net2Plan Tool and Net2Plan-Geographical Information Systems (GIS) Extension

Net2Plan [12] is an open-source and free to use Java-based software designed to overcome the existing barriers imposed by the industry and academia network planning tools for communication networks [11]. After its creation in 2011 and continuous upgrades, Net2Plan has become a powerful network planning software, intended for a broad spectrum of users: industry, research and academia. Its open-source nature makes Net2Plan an ideal tool to develop extensions and plugins when the scenario requires it. Examples of this in urban scenarios are found in [14,30]. Net2Plan-GIS is one of the open-source extensions of the Net2Plan that permits importing data of different layers from GIS databases, making them available for network optimization. In this work Net2Plan-GIS [14] has been used to import infrastructures data (city layouts of streets, intersections and waste containers) from Cartagena city in Spain (see Figure 1), which were stored in a QGIS database [31].
The ILP algorithm has been implemented in Net2Plan [12], making use of the open-source JOM [13] library for interacting with the ILP solver.

4.2. Area under Study: Downtown Cartagena

Cartagena is a medium size Spanish city with 220,000 inhabitants. The area under study is a delimited downtown area of 1 km2 and around 15,000 inhabitants (see Figure 2). This area is represented as a topology with set of nodes and links G = (N, E). Each link represents a one-way road in the streets. In two-way streets two unidirectional links are set. Each node represents the intersection of two or more streets. A node can also divide those streets with more than one waste container in the way of the street.
The area under study is a topology composed of 78 nodes (street intersections) joined by 121 unidirectional links which represent the way of streets and the real length of them. In the area under study there are 53 waste containers for plastic. The locations of plastic waste containers are managed by Net2Plan as a Boolean attribute of links, with name Container (see Figure 2). It is set to true if a plastic waste container is located in that street and false otherwise.

4.3. Truck Model for Waste Collection

The truck model Iveco AD260S31 Y/PS [32] has been assumed for the case study. The fuel consumption of this truck is 0.35 L/km not loaded and 0.50 L/km fully loaded. Its maximum payload is 10000 kg and it complies with the Euro 6 regulations for CO emissions: 1.5 g/kWh (2.68 kg/L). See Table 2.

4.4. Smart Waste Container

The waste containers considered in this work are plastic waste containers with 2600 L of capacity, that is, around 100 kg of crushed plastic waste [33]. We assume containers are smart like those in [9,10], with a sensor attached to them (inside them) to measure the filling percentage and a Radio Frequency module with LoRa or GPRS technology to send the data to a server or centralized system. An example of smart device for collecting waste data is 32U4 with MODULE7 GPRS/GSM/GPS, a cheap solution (around €20 per unit) [34] with rechargeable batteries. If a single sending data per day is planned, the batteries life can reach almost one year. The centralized system can be a server connected to Internet, receiving data from smart containers and processing them to update the GIS database of the city. Then, the Net2Plan-GIS and Net2Plan can be used for generating the optimal routes using real and updated data.

5. Formulation Parameters

The ILP searches for the optimal routes in terms of a measure cost combining the variable cost dependent on the route distance and a fixed cost for each truck actually used, whatever distance is traversing. Route distances are directly related to fuel consumption and CO2 emissions, two key parameters that must be analyzed. Fuel consumption ( f c ) per truck and time unit (day, week, month) and kg of waste collected, is formulated following equations proposed in [26]. It is calculated as:
f c   = f d ( f t , e m p t y + f t , f u l l ) W
f d is the total fuel consumption. f t , e m p t y is the fuel consumption given by the distance from the garage where the empty truck is parked to the place where the waste collection route starts plus the distance from the landfill, where the truck has dumped the waste collected—and it is empty again—to the garage or to the place where a new route starts, if the truck has to carry out a set of routes the same time unit considered (e.g., three routes in the same day). f t , f u l l is the fuel consumption given by the distance from the last collection in a route, where the truck is full, to the landfill. f d , f t , e m p t y and f t , f u l l are measured in litres. Finally, W is the amount of waste collected, measured in kg. The fuel consumption per track ( f c ) is measured in litre/kg.
Fuel consumption per truck and time unit can be also used to get the cost-in any currency-per each kg of waste collected by a truck in the time unit considered. It is calculated as follows:
C   = f c P f
C is the cost, measured, e.g., in €/kg and P f is the fuel cost per litre (in this work is set to 0.19 €/L).
CO2 emissions ( E c o 2 ) is calculated using a simplified version of the equation formulated in [27,35]:
E c o 2 = L E F f u e l F
L is the distance covered by a truck, measured in km. The sum of all distances covered by all trucks is multiplied by E F f u e l , the CO2 emissions factor (kg CO2/L) and divided by the fuel consumption index F (km/L), given by:
F = L f c W
For sake of simplicity we set 1 F = 0.425 , that means that fuel consumption per km is 0.425 L.
W a is the average of total amount of waste collected by those trucks involved in the collection (R), measured in kg:
W a = W R
Finally, the efficiency of a route (Ef) is computed as the relationship between the total amount of waste collected in a route and the route length. It is measured in kg/km and it is computed as follows:
E f = W L

6. Results

The scenario described in Section 4 is used as a use case example to apply the algorithm and analyze the results. The infrastructure data of a selected area in Cartagena downtown is managed by Net2Plan-GIS. Fifty-three (53) waste containers are candidates to be collected. Each of them can collect up to 100 kg of plastic waste. Since smart containers are not installed in Cartagena city yet, the fill level of garbage in containers has been set randomly, from 1% to 100% of their capacity. Trucks are like those indicated in Section 4.3. Three values of capacity in trucks (amount of waste collected) are considered in the study: 1500 kg, 2600 kg and 6700 kg.
The algorithm seeks to minimize the cost and shows as output, not only the optimal truck routes (path of streets that trucks have to traverse) but also economic and environmental information (Section 5): amount of CO2 emissions, fuel consumption, cost per kg of waste collected, efficiency of the optimal route and noise impact per street (measured as number of times any truck traverses each street). The ILP uses as an input a threshold value which fixes the filling percentage of garbage in the containers, so when the waste in them exceeds it, are selected to be collected and thus included in the algorithm for being visited. Input parameters S (cost of using a truck in the route, understood as the cost of truck maintenance and driver salary) and M (cost per km travelled by a truck) have been set to 100 and 0.19, respectively.
The scenario has been computed setting as origin and destination nodes in the route nodes 23 and 1 respectively (blue square in Figure 3). The ILP has been ran for different threshold values, from 5% to 95% in steps of 5%. Low threshold values mean that almost all the containers must be collected. High threshold values result in collecting only a few. The results obtained by the ILP are compared with a reference value, given by the real behaviour of truck routes in Cartagena: two trucks with 6700 kg of capacity with fixed routes, visiting between both all containers, independently of their fill level. Each point plotted has been computed one hundred times with different random amounts of waste in the collectors and the average has been extracted.
As example, Figure 3 shows a snapshot of an output provided by the optimal path problem algorithm executed in Net2plan-GIS in the scenario under study and with a threshold set to 85%. The output (optimal solution) of the ILP is the use of a single truck and the shortest path for that truck, represented in the map as the sequence of red links (streets) that the truck traverses to collect the garbage of all containers with a fill level equal or higher than 85%. Node marked with a blue square is node 23, the origin of the truck routes, while destination node (node 1), is next to it.
Figure 4 shows the results of waste collected (kg) per truck in average, with the fixed route used by the company in charge of collecting waste in Cartagena and the optimal path given by the ILP execution, for different truck capacities and threshold values. Note that the current path in Cartagena is planned with two trucks with maximum capacity of 6700 kg each one and it does not depend on the threshold. Their routes are scheduled with the aim at visiting all containers, independently of the amount of waste in them. On the contrary, the ILP gives as output the number of trucks to use and the optimal path of each one, that depends on the threshold set.
The results of the current path in Cartagena shows that the average of waste collected per truck is almost 1400 kg. The result of the optimal path for trucks with different capacities depends on the threshold set in the ILP execution and truck capacities. For trucks with low capacity (1500 kg and 2600 kg), the waste collected per truck is lower than the current path for almost all thresholds evaluated, while for trucks with 6700 kg of capacity, the waste collected strongly depends on the threshold. For threshold values from 5% to 70%, the average of waste collected per truck is higher than the result provided by the current path. When the threshold is higher than 70%, the amount of waste per truck in average is lower than the current path.
In order to shed some light to the previous results, Figure 5 is plotted. It shows the number of trucks used in average for different truck capacities, as well the data for the current path (two trucks). The average is calculated taking into account that each scenario has been executed 100 times. Each point in the graphic is the average of these results.
As can be seen, the results of the ILP show that the truck capacity and threshold impact on the number of trucks used. If trucks with low capacity (1500 kg) are considered in the ILP and the threshold is set to 5% (almost all containers must be emptied), then the number of trucks to use for traversing the optimal paths is 4. As the threshold increases, the number of trucks needed decreases, being lower than the current path when the thresholds are 65% or higher. If trucks of 2600 kg of capacity are used, the ILP shows that the optimal path needs two trucks when threshold is set between 5% and 35%. When the threshold is [35%, 65%], the number of trucks needed is between 2 and 1. Finally, when the threshold value is higher than 65%, the number of trucks needed is always 1. When trucks are 6700 kg of capacity the ILP execution gives as a result that only one truck is the optimal choice, independently of the threshold.
The number of trucks, the amount of waste they collect and the length of the routes are directly related to the CO2 emissions. This parameter was formulated in Section 5. Figure 6 shows the results of this in the scenario under study for the current path in Cartagena and the ILP executed for different truck capacities and thresholds. From Figure 6 we see that the current path has a constant value of CO2 emissions, since it is a fixed route with a fixed number of trucks, independently of the threshold value. The ILP shows that, depending on the threshold and truck capacity, the CO2 emissions varies. When trucks with 1500 kg of capacity are considered, the CO2 emissions are strongly dependent on the threshold. Threshold values in range [5%, 25%] means CO2 emissions higher than the current path. When threshold is set to 25% or lower the ILP reports lower CO2 emissions than the current path.
When trucks have a capacity of 2600 kg and 6700 kg, the CO2 emissions given by the optimal path are similar in all of thresholds evaluated and lower than the current path. Only when the threshold is set to [5%, 15%] and trucks are of 2600 kg of capacity, the ILP reports similar values of CO2 emissions than the current path.
Finally, the total cost of waste collected (€/kg) is shown in Figure 7. This depends on the length of the paths computed (that impacts also CO2 emissions) and by the number of trucks used, with a fixed cost per truck (€100), which includes cost of truck maintenance and driver salary per day. First thing to note is that total cost is, in our case study, dominated by the fixed cost of the trucks, that have a much higher impact in the final cost than the route lengths. Results plotted in Figure 7 show that the current path has a constant cost, while the ILP reports higher cost when trucks with 1500 kg of capacity are assumed, since more trucks are needed. When trucks with 2500 kg of capacity are used, the cost is almost equal than the current path, independently of the threshold set. However, if the trucks have 6700 kg of capacity, the cost is lower than the current path when the threshold is set in the range [5%, 70%].
From these results, we can conclude that the optimal path for waste collection strongly depends on the input parameters. For this study, we evaluate the ILP for different values of capacity of trucks and threshold. These have a direct effect in the amount of waste collected and number of trucks used, un thus, CO2 emissions and cost of waste collection. For the scenario under study, the best performance in terms of waste collected, cost of waste collection and CO2 emissions, is achieved when trucks have 6700 kg of capacity and the threshold is set in the range [5%, 60%]. When the threshold is in the range [60%, 95%] it is better to use trucks with 2600 kg.

7. Conclusions and Future Work

In this work, an optimal path planning algorithm based on an ILP (integer linear program) has been presented, with the capability of jointly deciding the number of trucks to use and their optimal routes and with the possibility of considering constraints like acoustic impact in the streets, or maximum route lengths for each truck. The algorithm is integrated into the open-source Net2Plan-GIS planning tool, which facilitates the application of this algorithm in practical use cases, in particular, allowing the input of data from GIS databases. In addition, the presented framework provides performance merits like fuel consumption, CO2 emissions and other economic and environmental figures. As an added value, our framework can export the path data into Google Maps, making it a powerful tool for smart cities.
To showcase our proposal, we present a realistic use case assessing the waste collection process in Cartagena city (Spain). The algorithm uses as input data from the GIS databases of the city and data received from smart containers (e.g., filling percentage). In the case study, our proposed algorithm assists the process of evaluating the benefits of using smart bins and optimizing the fill level threshold in the smart bin that should drive the decision on when to collect a bin.

Author Contributions

Conceptualization, P.J. and P.P.-M.; Data curation, J.-L.R.-G.; Formal analysis, M.-V.B.-D.; Funding acquisition, P.P.-M.; Investigation, P.P.-M.; Methodology, J.-L.R.-G. and P.P.-M.; Project administration, M.-V.B.-D. and J.-L.R.-G.; Resources, P.P.-M.; Software, J.-L.R.-G. and P.P.-M.; Supervision, J.-L.R.-G.; Validation, P.J.; Visualization, J.-L.R.-G.; Writing—original draft, M.-V.B.-D.; Writing—review & editing, M.-V.B.-D., J.-L.R.-G., P.J. and P.P.-M.

Funding

This research was partially funded by the Spanish National Project ONOFRE-2, ref. TEC2017-84423-C3-2-P (MINECO/AEI/FEDER, UE), H2020 EU project ref. H2020-ICT-2016-2 (ID 761727) topic: ICT-7-2016 and Erasmus + Program of EU, ref. 575853-EPP-1-2016-1-ES-EPPKA2-SSA. This publication reflects the views only of the authors and the Commission cannot be held responsible for any use which may be made of the information contained therein.

Acknowledgments

Thanks to A. Gómez-Martínez for his administrative and technical support.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Sánchez, L.; Elicegui, I.; Cuesta, J.; Muñoz, L.; Lanza, J. Integration of utilities infrastructures in a future internet enabled smart city framework. Sensors 2013, 13, 14438–14465. [Google Scholar] [CrossRef] [PubMed]
  2. Mahapatra, C.; Moharana, A.K.; Leung, V.C.M. Energy management in smart cities based on internet of things: Peak demand reduction and energy savings. Sensors 2017, 17, 2812. [Google Scholar] [CrossRef] [PubMed]
  3. Pasolini, G.; Buratti, C.; Feltrin, L.; Zabini, F.; De Castro, C.; Verdone, R.; Andrisano, O. Smart city pilot projects using LoRa and IEEE802.15.4 technologies. Sensors 2018, 18, 1118. [Google Scholar] [CrossRef] [PubMed]
  4. Anagnostopoulos, T.; Zaslavsky, A.; Kolomvatsos, K.; Medvedev, A.; Amirian, P.; Morley, J.; Hadjieftymiades, S. Challenges and opportunities of waste management in IoT-enabled smart cities: A survey. IEEE Trans. Sustain. Comput. 2017, 2, 275–289. [Google Scholar] [CrossRef]
  5. Zsigraiova, Z.; Semiao, V.; Beijoco, F. Operation costs and pollutant emissions reduction by definition of new collection scheduling and optimization of MSW collection routes using GIS. The case study of Barreiro, Portugal. Waste Manag. 2013, 33, 793–806. [Google Scholar] [CrossRef] [PubMed]
  6. Reddy, P.S.N.; Naik, R.N.; Kumar, A.A.; Kishor, S.N. Wireless dust bin monitoring and alert system using Arduino. In Proceedings of the Second International Conference on Electrical, Computer and Communication Technologies (ICECCT), Tamil Nadu, India, 22–24 February 2017; pp. 1–5. [Google Scholar] [CrossRef]
  7. Muyunda, N.; Ibrahim, M. Arduino-based smart garbage monitoring system: Analysis requirement and implementation. In Proceedings of the International Conference on Computer and Drone Applications (IConDA), Kuching, Malaysia, 9–11 November 2017; pp. 28–32. [Google Scholar] [CrossRef]
  8. Tiwari, C.; Nagarathna, K. Waste management using solar smart bin. In Proceedings of the 2017 International Conference on Energy, Communication, Data Analytics and Soft Computing (ICECDS), Tamilnadu, India, 1–2 August 2017; pp. 1123–1126. [Google Scholar] [CrossRef]
  9. Lozano, Á.; Caridad, J.; De Paz, J.F.; Villarrubia González, G.; Bajo, J. Smart waste collection system with low consumption LoRaWAN nodes and route optimization. Sensors 2018, 18, 1465. [Google Scholar] [CrossRef] [PubMed]
  10. Cerchecci, M.; Luti, F.; Mecocci, A.; Parrino, S.; Peruzzi, G.; Pozzebon, A. A low power IoT sensor node architecture for waste management within smart cities context. Sensors 2018, 18, 1282. [Google Scholar] [CrossRef] [PubMed]
  11. Pavon-Marino, P.; Izquierdo-Zaragoza, J.-L. Net2Plan: An open source network planning tool for bridging the gap between academia and industry. IEEE Netw. 2015, 29, 90–96. [Google Scholar] [CrossRef]
  12. Net2Plan. The Open-Source Network Planner. Available online: http://www.net2plan.com (accessed on 26 April 2019).
  13. Java Optimization Modeler. Available online: http://www.net2plan.com/jom/ (accessed on 26 April 2019).
  14. Romero-Gázquez, J.L.; Bueno-Delgado, M.V.; Moreno-Muro, F.J.; Pavon-Marino, P. Net2Plan-GIS: An open-source Net2Plan extension integrating GIS data for 5G network planning. In Proceedings of the 20th International Conference on Transparent Optical Networks, Bucharest, Romania, 1–5 July 2018. [Google Scholar]
  15. Net2Plan WasteCollection Github repository. Available online: https://github.com/girtel/Net2Plan-GisLibrary/blob/WasteCollection/src/main/java/com/net2plan/gis/algorithms/ (accessed on 26 April 2019).
  16. Net2Plan Github repository. Available online: https://github.com/girtel/Net2Plan (accessed on 26 April 2019).
  17. Net2Plan GisLibrary Github repository. Available online: https://github.com/girtel/Net2Plan-GisLibrary (accessed on 26 April 2019).
  18. Dantzig, G.B.; Ramser, J.H. The truck dispatching problem. Manag. Sci. 1959, 6, 80–91. [Google Scholar] [CrossRef]
  19. Kulcar, T. Optimizing solid waste collection in Brussels. Eur. J. Oper. Res. 1996, 94, 71–77. [Google Scholar] [CrossRef]
  20. Agha, S.R. Optimizing routing of municipal solid waste collection vehicles in Deir el-Balah–Gaza strip. IUG J. Nat. Stud. 2006, 14, 75–89, ISSN 1726-6807. [Google Scholar]
  21. Faccio, M.; Persona, A.; Zanin, G. Waste collection multi objective model with real time traceability data. Waste Manag. 2011, 31, 2391–2405. [Google Scholar] [CrossRef] [PubMed]
  22. Islam, R.; Rahman, M.S. An ant colony optimization algorithm for waste collection vehicle routing with time window, driver rest period and multiple disposal facilities. In Proceedings of the IEEE/OSA/IAPR International Conference on Informatics, Electronics and Vision, Dhaka, Bangladesh, 18–19 May 2012; pp. 774–779. [Google Scholar]
  23. Karadimas, N.V.; Papatzelou, K.; Loumos, V.G. Genetic Algorithms for Municipal Solid Waste Collection and Routing Optimization. In Artificial Intelligence and Innovations 2007: From Theory to Applications; AIAI 2007. IFIP International Federation for Information Processing, Springer: Boston, MA, USA; Volume 247.
  24. Son, L.H. Optimizing municipal solid waste collection using chaotic particle swarm optimization in GIS based environments: A case study at Danang City, Vietnam. Exp. Syst. Appl. 2014, 41, 8062–8074. [Google Scholar] [CrossRef]
  25. Gómez, J.R.; Pacheco, J.; Gonzalo-Orden, H. A tabu search method for a bi-objective urban waste collection problem. Comput. Aided Civ. Infrastruct. Eng. 2015, 30, 36–53. [Google Scholar] [CrossRef]
  26. Bing, X.; Bloemhof, J.M.; Ramos, T.R.P.; Barbosa-Povoa, A.P.; Wong, C.Y.; van der Vorst, J.G. Research challenges in municipal solid waste logistics management. Waste Manag. 2016, 48, 584–592. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  27. Akhtar, M.; Hannan, M.A.; Begum, R.A.; Basri, H.; Scavino, E. Backtracking search algorithm in CVRP models for efficient solid waste collection and route optimization. Waste Manag. 2017, 61, 117–128. [Google Scholar] [CrossRef] [PubMed]
  28. Hannan, M.A.; Akhtar, M.; Begum, R.A.; Basri, H.; Hussain, A.; Scavino, E. Capacitated vehicle-routing problem model for scheduled solid waste collection and route optimization using PSO algorithm. Waste Manag. 2018, 71, 31–41. [Google Scholar] [CrossRef] [PubMed]
  29. Pavón-Mariño, P. Optimization of Computer Networks: Modeling and Algorithms: A Hands-on Approach; Wiley: Hoboken, NJ, USA, 2016. [Google Scholar]
  30. Jiménez-Gómez, P.; Bueno-Delgado, M.V.; Pavón-Mariño, P. Net2Plan-UTN: An educational tool for modeling and planning urban transportation networks. In Proceedings of the 8th Annual International Conference on Education and New Learning Technologies, Barcelona, Spain, 4–6 July 2016. [Google Scholar]
  31. QGIS. Open Source GIS Tool. Available online: https://www.qgis.org (accessed on 26 April 2019).
  32. IVECO-. Available online: http://www.iveco.org/download/IVECO/IVECO%20EURO%202-3/STRALIS/STRALIS_AS/ad260s31yps.pdf (accessed on 26 April 2019).
  33. Alproshop. Plastic Waste Container. Available online: https://alproshop.com/metalico-2600-de-gran-capacidad/ (accessed on 26 April 2019).
  34. Smart Device 32U4 WITH MODULE7 GPRS/GSM/GPS. Available online: https://www.elecrow.com/wiki/index.php?title=32u4_with_A7_GPRS/GSM (accessed on 26 April 2019).
  35. Lin, T.P. Carbon dioxide emissions from transport in Taiwan’s national parks. Tour. Manag. 2010, 31, 285–290. [Google Scholar] [CrossRef]
Figure 1. (a) Snapshot of QGIS with containers of plastic waste detailed; (b) Snapshot of Net2Plan-Geographical Information Systems (GIS) with containers of plastic waste plotted with green icons.
Figure 1. (a) Snapshot of QGIS with containers of plastic waste detailed; (b) Snapshot of Net2Plan-Geographical Information Systems (GIS) with containers of plastic waste plotted with green icons.
Sensors 19 01973 g001
Figure 2. Snapshot of a delimited downtown area of Cartagena in Net2Plan, plotted with nodes and links in intersections and streets respectively. On the right side, the list of links is plotted, with length in km and attributes.
Figure 2. Snapshot of a delimited downtown area of Cartagena in Net2Plan, plotted with nodes and links in intersections and streets respectively. On the right side, the list of links is plotted, with length in km and attributes.
Sensors 19 01973 g002
Figure 3. Snapshot of Net2Plan-GIS after integer linear programming (ILP) execution in the scenario under study in Cartagena city, setting threshold of waste level in containers to 85%. Optimal path route in red color.
Figure 3. Snapshot of Net2Plan-GIS after integer linear programming (ILP) execution in the scenario under study in Cartagena city, setting threshold of waste level in containers to 85%. Optimal path route in red color.
Sensors 19 01973 g003
Figure 4. Average waste collected per truck (different truck capacity) for the optimal path given by ILP and the real behavior of truck routes in Cartagena.
Figure 4. Average waste collected per truck (different truck capacity) for the optimal path given by ILP and the real behavior of truck routes in Cartagena.
Sensors 19 01973 g004
Figure 5. Number of trucks used, in average, for the optimal paths given by ILP and the current path in Cartagena.
Figure 5. Number of trucks used, in average, for the optimal paths given by ILP and the current path in Cartagena.
Sensors 19 01973 g005
Figure 6. Amount of CO2 emissions: for the optimal paths given by ILP and the current path in Cartagena.
Figure 6. Amount of CO2 emissions: for the optimal paths given by ILP and the current path in Cartagena.
Sensors 19 01973 g006
Figure 7. Cost (€/kg), for the optimal paths given by ILP and the current path in Cartagena.
Figure 7. Cost (€/kg), for the optimal paths given by ILP and the current path in Cartagena.
Sensors 19 01973 g007
Table 1. Comparison of the main features of algorithms reviewed in state of art.
Table 1. Comparison of the main features of algorithms reviewed in state of art.
Ref.AlgorithmGoalSmart BinsGISStreet (≥1)#Trucks as Output
[9Different heuristics and local search methodMinimize Distance xX
[20MILPMinimize DistancexxxX
[21Heuristic: Nearest NeighborhoodMinimize Distance x
[22Meta-heuristic: AnColony OptimizationMinimize Distancexxx
[23Meta-heurtic: Genetic algorithmMinimize Distancex xX
[24Meta-heuristic: Chaotic Particle Swarm OptimizationMaximize total waste collectedx x
[25Meta-heuristic: Tabu searchMinimize transport cost + maximize service qualityxxxX
[27Meta-heuristic: Backtracking Search AlgorithmMinimize Distancexx
[28Meta-heuristic: Particle Swarm OptimizationMinimize Distanc xx
***ILPMinimize Distance + Truck/s cost
Table 2. Euro emissions (g/kWh).
Table 2. Euro emissions (g/kWh).
TypeCOHCNOxPM
Euro VI1.50.130.40.01

Share and Cite

MDPI and ACS Style

Bueno-Delgado, M.-V.; Romero-Gázquez, J.-L.; Jiménez, P.; Pavón-Mariño, P. Optimal Path Planning for Selective Waste Collection in Smart Cities. Sensors 2019, 19, 1973. https://doi.org/10.3390/s19091973

AMA Style

Bueno-Delgado M-V, Romero-Gázquez J-L, Jiménez P, Pavón-Mariño P. Optimal Path Planning for Selective Waste Collection in Smart Cities. Sensors. 2019; 19(9):1973. https://doi.org/10.3390/s19091973

Chicago/Turabian Style

Bueno-Delgado, María-Victoria, José-Luis Romero-Gázquez, Pilar Jiménez, and Pablo Pavón-Mariño. 2019. "Optimal Path Planning for Selective Waste Collection in Smart Cities" Sensors 19, no. 9: 1973. https://doi.org/10.3390/s19091973

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop