diff --git a/city_model_structure/tree.py b/city_model_structure/tree.py new file mode 100644 index 00000000..63b9cebf --- /dev/null +++ b/city_model_structure/tree.py @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + @property + def height(self): + """ + Get height of tree + :return: height + """ + return self._height + + + @property + def canopy(self): + """ + Get canopy of tree + :return: canopy + """ + return self._canopy +