# fi_forestry ## Description `fi_forestry` is an open-source Rust library designed for efficient forestry data processing. It provides tools for creating data structures for forest stands from finnish XML files and allows for various GIS-based spatial data operations. ## Features - Read and process XML-formatted forestry data from Finland. - Create data structures for forest stands. - Perform GIS-related calculations and operations, such as: - Defining boundaries of areas. - Generating trees. - Algorithms for logging and thinning. - Simulating different forest layers. ## Installation To include `fi_forestry` in your Rust project, add the following line to your `Cargo.toml`: ```toml [dependencies] fi_forestry = "0.1.3" # replace with the latest version ``` ##### Reading the XML file ```rust let property = ForestPropertyData::from_xml_file("forestpropertydata.xml"); ```