In the project we treat the layers as dictionaries where keys are layer names and values are the actual values that belong to each layer. Throughout the whole project there is a large number of operations with the layers that are often used repeatedly. In order to improve the code readability it might be useful to create some class that encapsulates the layers and makes it more convenient to work with.
In the project we treat the layers as dictionaries where keys are layer names and values are the actual values that belong to each layer. Throughout the whole project there is a large number of operations with the layers that are often used repeatedly. In order to improve the code readability it might be useful to create some class that encapsulates the layers and makes it more convenient to work with.