BERATools 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- beratools/__init__.py +3 -0
- beratools/core/__init__.py +0 -0
- beratools/core/algo_centerline.py +476 -0
- beratools/core/algo_common.py +489 -0
- beratools/core/algo_cost.py +185 -0
- beratools/core/algo_dijkstra.py +492 -0
- beratools/core/algo_footprint_rel.py +693 -0
- beratools/core/algo_line_grouping.py +941 -0
- beratools/core/algo_merge_lines.py +255 -0
- beratools/core/algo_split_with_lines.py +296 -0
- beratools/core/algo_vertex_optimization.py +451 -0
- beratools/core/constants.py +56 -0
- beratools/core/logger.py +92 -0
- beratools/core/tool_base.py +126 -0
- beratools/gui/__init__.py +11 -0
- beratools/gui/assets/BERALogo.png +0 -0
- beratools/gui/assets/beratools.json +471 -0
- beratools/gui/assets/closed.gif +0 -0
- beratools/gui/assets/closed.png +0 -0
- beratools/gui/assets/gui.json +8 -0
- beratools/gui/assets/open.gif +0 -0
- beratools/gui/assets/open.png +0 -0
- beratools/gui/assets/tool.gif +0 -0
- beratools/gui/assets/tool.png +0 -0
- beratools/gui/bt_data.py +485 -0
- beratools/gui/bt_gui_main.py +700 -0
- beratools/gui/main.py +27 -0
- beratools/gui/tool_widgets.py +730 -0
- beratools/tools/__init__.py +7 -0
- beratools/tools/canopy_threshold_relative.py +769 -0
- beratools/tools/centerline.py +127 -0
- beratools/tools/check_seed_line.py +48 -0
- beratools/tools/common.py +622 -0
- beratools/tools/line_footprint_absolute.py +203 -0
- beratools/tools/line_footprint_fixed.py +480 -0
- beratools/tools/line_footprint_functions.py +884 -0
- beratools/tools/line_footprint_relative.py +75 -0
- beratools/tools/tool_template.py +72 -0
- beratools/tools/vertex_optimization.py +57 -0
- beratools-0.1.0.dist-info/METADATA +134 -0
- beratools-0.1.0.dist-info/RECORD +44 -0
- beratools-0.1.0.dist-info/WHEEL +4 -0
- beratools-0.1.0.dist-info/entry_points.txt +2 -0
- beratools-0.1.0.dist-info/licenses/LICENSE +22 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# ---------------------------------------------------------------------------
|
|
2
|
+
# Copyright (C) 2021 Applied Geospatial Research Group
|
|
3
|
+
#
|
|
4
|
+
# This program is free software: you can redistribute it and/or modify
|
|
5
|
+
# it under the terms of the GNU General Public License as published by
|
|
6
|
+
# the Free Software Foundation, version 3.
|
|
7
|
+
#
|
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11
|
+
# GNU General Public License for more details.
|
|
12
|
+
#
|
|
13
|
+
# You should have received a copy of the GNU General Public License
|
|
14
|
+
# along with this program. If not, see <https://gnu.org/licenses/gpl-3.0>.
|
|
15
|
+
#
|
|
16
|
+
# ---------------------------------------------------------------------------
|
|
17
|
+
#
|
|
18
|
+
# line_footprint_relative.py
|
|
19
|
+
# Script Author: Maverick Fong
|
|
20
|
+
# Date: 2023-May
|
|
21
|
+
# Use open sources python library for produce dynamic footprint
|
|
22
|
+
# from dynamic canopy and cost raster with lines and CHM input.
|
|
23
|
+
# Prerequisite: Line feature class must have the attribute Fields: "OLnFID" adn CHM raster
|
|
24
|
+
# line_footprint_relative.py
|
|
25
|
+
# This script is part of the BERA toolset
|
|
26
|
+
# Webpage: https://github.com/
|
|
27
|
+
#
|
|
28
|
+
# Purpose: Creates dynamic footprint polygons for each input line based on a least
|
|
29
|
+
# cost corridor method and individual line thresholds.
|
|
30
|
+
#
|
|
31
|
+
# ---------------------------------------------------------------------------
|
|
32
|
+
import sys
|
|
33
|
+
from pathlib import Path
|
|
34
|
+
from inspect import getsourcefile
|
|
35
|
+
|
|
36
|
+
if __name__ == "__main__":
|
|
37
|
+
current_file = Path(getsourcefile(lambda: 0)).resolve()
|
|
38
|
+
btool_dir = current_file.parents[2]
|
|
39
|
+
sys.path.insert(0, btool_dir.as_posix())
|
|
40
|
+
|
|
41
|
+
from beratools.tools.line_footprint_functions import *
|
|
42
|
+
from beratools.tools.canopy_threshold_relative import *
|
|
43
|
+
|
|
44
|
+
if __name__ == "__main__":
|
|
45
|
+
start_time = time.time()
|
|
46
|
+
print("Dynamic CC and Footprint processing started")
|
|
47
|
+
print("Current time: {}".format(time.strftime("%d %b %Y %H:%M:%S", time.localtime())))
|
|
48
|
+
|
|
49
|
+
parser = argparse.ArgumentParser()
|
|
50
|
+
parser.add_argument("-i", "--input", type=json.loads)
|
|
51
|
+
parser.add_argument("-p", "--processes")
|
|
52
|
+
parser.add_argument("-v", "--verbose")
|
|
53
|
+
args = parser.parse_args()
|
|
54
|
+
args.input["full_step"] = True
|
|
55
|
+
del args.input["out_footprint"]
|
|
56
|
+
del args.input["out_centerline"]
|
|
57
|
+
del args.input["exp_shk_cell"]
|
|
58
|
+
del args.input["max_ln_width"]
|
|
59
|
+
|
|
60
|
+
verbose = True if args.verbose == "True" else False
|
|
61
|
+
dy_cl_line = main_canopy_threshold_relative(
|
|
62
|
+
print, **args.input, processes=int(args.processes), verbose=verbose
|
|
63
|
+
)
|
|
64
|
+
args = parser.parse_args()
|
|
65
|
+
args.input["full_step"] = True
|
|
66
|
+
args.input["in_line"] = dy_cl_line
|
|
67
|
+
del args.input["off_ln_dist"]
|
|
68
|
+
del args.input["canopy_percentile"]
|
|
69
|
+
verbose = True if args.verbose == "True" else False
|
|
70
|
+
main_line_footprint_relative(print, **args.input, processes=int(args.processes), verbose=verbose)
|
|
71
|
+
|
|
72
|
+
print("%{}".format(100))
|
|
73
|
+
print("Dynamic CC and Footprint processes finished")
|
|
74
|
+
print("Current time: {}".format(time.strftime("%d %b %Y %H:%M:%S", time.localtime())))
|
|
75
|
+
print("Total processing time (seconds): {}".format(round(time.time() - start_time, 3)))
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Copyright (C) 2025 Applied Geospatial Research Group.
|
|
3
|
+
|
|
4
|
+
This script is licensed under the GNU General Public License v3.0.
|
|
5
|
+
See <https://gnu.org/licenses/gpl-3.0> for full license details.
|
|
6
|
+
|
|
7
|
+
Author: AUTHOR NAME
|
|
8
|
+
|
|
9
|
+
Description:
|
|
10
|
+
This script is tool template for the BERA Tools. The tool showcases
|
|
11
|
+
how to create a new tool for the BERA Tools framework. It is a
|
|
12
|
+
starting point for developers to implement their own tools.
|
|
13
|
+
It uses the GeoPandas to read and write geospatial data,
|
|
14
|
+
and the multiprocessing library to process the geospatial data.
|
|
15
|
+
|
|
16
|
+
To integrate with GUI, work in the gui/assets/beratools.json is needed.
|
|
17
|
+
Please see developer's guide for more details.
|
|
18
|
+
|
|
19
|
+
Webpage: https://github.com/appliedgrg/beratools
|
|
20
|
+
|
|
21
|
+
The purpose of this script is to provide template for tool.
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
import time
|
|
25
|
+
|
|
26
|
+
import geopandas as gpd
|
|
27
|
+
import pandas as pd
|
|
28
|
+
|
|
29
|
+
import beratools.tools.common as bt_common
|
|
30
|
+
from beratools.core.tool_base import execute_multiprocessing
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def tool_name(in_feature, in_layer, buffer_dist, out_feature, out_layer, processes, verbose):
|
|
34
|
+
"""
|
|
35
|
+
Define tool entry point.
|
|
36
|
+
|
|
37
|
+
Args:
|
|
38
|
+
in_feature: input feature
|
|
39
|
+
in_layer: layer name
|
|
40
|
+
buffer_dist: buffer for input lines
|
|
41
|
+
out_feature: output feature
|
|
42
|
+
out_layer: layer name
|
|
43
|
+
processes: number of processes to use
|
|
44
|
+
verbose: verbosity level
|
|
45
|
+
|
|
46
|
+
These arguments are defined in beratools.json file. Whenever possible,
|
|
47
|
+
use execute_multiprocessing to run tasks in parallel to speedup.
|
|
48
|
+
|
|
49
|
+
"""
|
|
50
|
+
buffer_dist = float(buffer_dist)
|
|
51
|
+
gdf = gpd.read_file(in_feature, layer=in_layer)
|
|
52
|
+
gdf_list = [(gdf.iloc[[i]], buffer_dist) for i in range(len(gdf))]
|
|
53
|
+
|
|
54
|
+
results = execute_multiprocessing(buffer_worker, gdf_list, "tool_template", processes, verbose=verbose)
|
|
55
|
+
|
|
56
|
+
buffered_gdf = gpd.GeoDataFrame(pd.concat(results, ignore_index=True), crs=gdf.crs)
|
|
57
|
+
buffered_gdf.to_file(out_feature, layer=out_layer)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
# task executed in a worker process
|
|
61
|
+
def buffer_worker(in_args):
|
|
62
|
+
buffered = in_args[0].copy()
|
|
63
|
+
buffer_dist = in_args[1]
|
|
64
|
+
buffered["geometry"] = buffered.geometry.buffer(buffer_dist)
|
|
65
|
+
return buffered
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
if __name__ == "__main__":
|
|
69
|
+
start_time = time.time()
|
|
70
|
+
in_args, in_verbose = bt_common.check_arguments()
|
|
71
|
+
tool_name(**in_args.input, processes=int(in_args.processes), verbose=in_verbose)
|
|
72
|
+
print("Elapsed time: {}".format(time.time() - start_time))
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Copyright (C) 2025 Applied Geospatial Research Group.
|
|
3
|
+
|
|
4
|
+
This script is licensed under the GNU General Public License v3.0.
|
|
5
|
+
See <https://gnu.org/licenses/gpl-3.0> for full license details.
|
|
6
|
+
|
|
7
|
+
Author: Richard Zeng
|
|
8
|
+
|
|
9
|
+
Description:
|
|
10
|
+
This script is part of the BERA Tools.
|
|
11
|
+
Webpage: https://github.com/appliedgrg/beratools
|
|
12
|
+
|
|
13
|
+
The purpose of this script is the public interface for vertex optimization.
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
import time
|
|
17
|
+
|
|
18
|
+
import beratools.core.algo_vertex_optimization as bt_vo
|
|
19
|
+
import beratools.tools.common as bt_common
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def vertex_optimization(
|
|
23
|
+
in_line,
|
|
24
|
+
in_raster,
|
|
25
|
+
search_distance,
|
|
26
|
+
line_radius,
|
|
27
|
+
out_line,
|
|
28
|
+
processes,
|
|
29
|
+
verbose,
|
|
30
|
+
in_layer=None,
|
|
31
|
+
out_layer=None,
|
|
32
|
+
):
|
|
33
|
+
if not bt_common.compare_crs(bt_common.vector_crs(in_line), bt_common.raster_crs(in_raster)):
|
|
34
|
+
return
|
|
35
|
+
|
|
36
|
+
vg = bt_vo.VertexGrouping(
|
|
37
|
+
in_line,
|
|
38
|
+
in_raster,
|
|
39
|
+
search_distance,
|
|
40
|
+
line_radius,
|
|
41
|
+
out_line,
|
|
42
|
+
processes,
|
|
43
|
+
verbose,
|
|
44
|
+
in_layer,
|
|
45
|
+
out_layer,
|
|
46
|
+
)
|
|
47
|
+
vg.create_all_vertex_groups()
|
|
48
|
+
vg.compute()
|
|
49
|
+
vg.update_all_lines()
|
|
50
|
+
vg.save_all_layers(out_line)
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
if __name__ == "__main__":
|
|
54
|
+
in_args, in_verbose = bt_common.check_arguments()
|
|
55
|
+
start_time = time.time()
|
|
56
|
+
vertex_optimization(**in_args.input, processes=int(in_args.processes), verbose=in_verbose)
|
|
57
|
+
print("Elapsed time: {}".format(time.time() - start_time))
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: BERATools
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: An advanced forest line feature analysis platform
|
|
5
|
+
Project-URL: Homepage, https://github.com/appliedgrg/beratools
|
|
6
|
+
Author-email: AppliedGRG <appliedgrg@gmail.com>, Richard Zeng <richardqzeng@gmail.com>
|
|
7
|
+
License: MIT License
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2023, AppliedGRG
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Keywords: BERA,Line
|
|
31
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
32
|
+
Classifier: Intended Audience :: Developers
|
|
33
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
34
|
+
Classifier: Natural Language :: English
|
|
35
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
36
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
37
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
38
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
39
|
+
Requires-Python: >=3.10
|
|
40
|
+
Requires-Dist: bera-centerlines
|
|
41
|
+
Requires-Dist: gdal; platform_system != 'Windows'
|
|
42
|
+
Requires-Dist: geopandas
|
|
43
|
+
Requires-Dist: pyogrio>=0.9.0
|
|
44
|
+
Requires-Dist: pyqt5
|
|
45
|
+
Requires-Dist: rasterio
|
|
46
|
+
Requires-Dist: scikit-image>=0.24.0
|
|
47
|
+
Requires-Dist: tqdm
|
|
48
|
+
Requires-Dist: xarray-spatial
|
|
49
|
+
Provides-Extra: dev
|
|
50
|
+
Requires-Dist: build; extra == 'dev'
|
|
51
|
+
Requires-Dist: isort; extra == 'dev'
|
|
52
|
+
Requires-Dist: mypy; extra == 'dev'
|
|
53
|
+
Requires-Dist: pre-commit; extra == 'dev'
|
|
54
|
+
Requires-Dist: ruff; extra == 'dev'
|
|
55
|
+
Requires-Dist: tox; extra == 'dev'
|
|
56
|
+
Requires-Dist: twine; extra == 'dev'
|
|
57
|
+
Provides-Extra: test
|
|
58
|
+
Requires-Dist: pytest; extra == 'test'
|
|
59
|
+
Description-Content-Type: text/markdown
|
|
60
|
+
|
|
61
|
+
# BERA Tools
|
|
62
|
+
<div align="center">
|
|
63
|
+
BERA Tools is successor of [Forest Line Mapper](https://github.com/appliedgrg/flm). It is a toolset for enhanced delineation and attribution of linear disturbances in forests.
|
|
64
|
+
|
|
65
|
+
[](https://github.com/appliedgrg/bera-tools/actions/workflows/python-tests.yml)
|
|
66
|
+
[](https://bera-tools.readthedocs.io/en/latest/)
|
|
67
|
+
<br>
|
|
68
|
+
[](https://anaconda.org/AppliedGRG/beratools)
|
|
69
|
+
[](https://www.python.org/downloads/release/python-390/)
|
|
70
|
+
<br>
|
|
71
|
+
[](https://github.com/appliedgrg/bera-tools/blob/main/LICENSE)
|
|
72
|
+
|
|
73
|
+
</div>
|
|
74
|
+
<!---->
|
|
75
|
+
|
|
76
|
+
## [Quick Start](https://appliedgrg.github.io/beratools)
|
|
77
|
+
|
|
78
|
+
BERA Tools is built upon open-source Python libraries. Anaconda is used to manage runtime environments.
|
|
79
|
+
|
|
80
|
+
Installation Steps:
|
|
81
|
+
|
|
82
|
+
- Install Miniconda. Download Miniconda from [Miniconda](https://docs.anaconda.com/miniconda/) and install on your machine.
|
|
83
|
+
- Launch **Anaconda Prompt**. Run the following command to create a new environment. **BERA Tools** will be installed in the new environment at the same time. Download the file [conda_environment.yml](https://github.com/RichardQZeng/BTools/blob/main/conda_environment.yml) first.
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
$ conda env create -f conda_environment.yml
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Wait until the installation is done.
|
|
90
|
+
- Activate the **bera** environment and launch BERA Tools:
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
$ conda activate bera
|
|
94
|
+
$ beratools
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
## User Guide
|
|
99
|
+
|
|
100
|
+
Check the online [User Guide](https://appliedgrg.github.io/beratools/) for more information.
|
|
101
|
+
|
|
102
|
+
## Technical Documentation
|
|
103
|
+
|
|
104
|
+
BERA Tools provides a series of tools for forest lines processing. Please refer to the technical documentation for programming APIs and algorithm details.
|
|
105
|
+
|
|
106
|
+
[Technical Documentation](https://appliedgrg.github.io/beratools/)
|
|
107
|
+
|
|
108
|
+
## Development and Testing
|
|
109
|
+
|
|
110
|
+
To install test dependencies:
|
|
111
|
+
```bash
|
|
112
|
+
pip install .[test]
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
To install development tools (e.g., ruff):
|
|
116
|
+
```bash
|
|
117
|
+
pip install .[dev]
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
You can combine extras:
|
|
121
|
+
```bash
|
|
122
|
+
pip install .[test,dev]
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
## Contribution Guide
|
|
126
|
+
|
|
127
|
+
We welcome contributions! Please see our [Contribution Guide](contribution_guide.md) for details.
|
|
128
|
+
|
|
129
|
+
## Credits
|
|
130
|
+
|
|
131
|
+
This tool is part of the [**Boreal Ecosystem Recovery and Assessment (BERA)**](http://www.beraproject.org/) Project, and is being actively developed by the [**Applied Geospatial Research Group**](https://www.appliedgrg.ca/).
|
|
132
|
+
|
|
133
|
+

|
|
134
|
+
*Copyright (C) 2025 Applied Geospatial Research Group*
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
beratools/__init__.py,sha256=Wrqbh2TWZM7l1fl1h8GtlovAqm8xombgExwybbr3A6Q,87
|
|
2
|
+
beratools/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
beratools/core/algo_centerline.py,sha256=4zMNcJUCAE8cbJ7za2apJrpSaT33xSM2J9LWkwt4ITY,15701
|
|
4
|
+
beratools/core/algo_common.py,sha256=yIBVfFqTPN3DqtyQKIOoLh94EmzIlzyaSyA0htelAZs,14825
|
|
5
|
+
beratools/core/algo_cost.py,sha256=JFNdy9U4B2-AgUR_o-zKABEINqU8GJLFJIAxFOm05Zw,5934
|
|
6
|
+
beratools/core/algo_dijkstra.py,sha256=xnVv8PI3dQ2hOrKlZPsk8B9_eNfv2YbQoBmOT_J_138,15055
|
|
7
|
+
beratools/core/algo_footprint_rel.py,sha256=EPcxWikhIuuSpgtSk54IqaOwiJ2JQpXBV5_3CPmn0Mo,25209
|
|
8
|
+
beratools/core/algo_line_grouping.py,sha256=k2uuxcL9wd0Ag4oNJLDC-X2nd-b9qjkM6rWdmk_1Ovc,32811
|
|
9
|
+
beratools/core/algo_merge_lines.py,sha256=JWQjBLy9InjVkFfC5zeroor7GxY0CV29hKlxNB8Ufu4,8412
|
|
10
|
+
beratools/core/algo_split_with_lines.py,sha256=raRYlbskf7xaO2qUH3bJU_GGhQBEXBJYMRU2goPb6_o,10905
|
|
11
|
+
beratools/core/algo_vertex_optimization.py,sha256=u22ha9J4wUXyiVGwIIZYtIOnmwi7vRM1nx-8d0YNtUI,15340
|
|
12
|
+
beratools/core/constants.py,sha256=KuLkHN1tNLswpVQmHHDtEtwX_1YKRF5cFsLNLXBK1uQ,1164
|
|
13
|
+
beratools/core/logger.py,sha256=55nhQV3Jjjf3GD-v6hfd-LKc8YyH4Wpe53ImQhLGwfM,2803
|
|
14
|
+
beratools/core/tool_base.py,sha256=nT22-CD6_lH8ZaTKKZNcO0_Ddbf2zxDS5CGEV1xpRts,3925
|
|
15
|
+
beratools/gui/__init__.py,sha256=zYIIWtPF73iVlXdH9euMUQ4DH7f-jg5yLgjn3qCQ36o,151
|
|
16
|
+
beratools/gui/bt_data.py,sha256=4V1pr_uO35_FOFT4BgxWObh4UDKY4TxWAO-7bX7_Tdw,17287
|
|
17
|
+
beratools/gui/bt_gui_main.py,sha256=LK5Vly6OZMjpofjjCKCrI6962CxAUvNen99UeqJyGhE,24979
|
|
18
|
+
beratools/gui/main.py,sha256=YHKAn0-NOtEksqFpTE2tAbPNFTeJZaTQ3dmrEdq8_Ko,645
|
|
19
|
+
beratools/gui/tool_widgets.py,sha256=4XKbyHhhkyJMATUGJghyG8cbM4nNnOfb7x_5v7PhEW8,27504
|
|
20
|
+
beratools/gui/assets/BERALogo.png,sha256=hnGLSL7Jv2ljDn6Z8ad5ekzH9k1PEuq7xe7Hh8bXZkE,6660
|
|
21
|
+
beratools/gui/assets/beratools.json,sha256=bx75-vtq2yHdAeF3o-Vj8htdIExUpG80N4GcjzO2iJk,24617
|
|
22
|
+
beratools/gui/assets/closed.gif,sha256=T9BBGl286-FdSRYbWVt68HwPRF0geWoowtBzeYsk_bI,592
|
|
23
|
+
beratools/gui/assets/closed.png,sha256=FRSAh3wzASowFUEt88zHhk1BQmwRbjoCs50Ff8KpJNQ,311
|
|
24
|
+
beratools/gui/assets/gui.json,sha256=kRD3Ozim9IotcY8P3fapgs4qqj5vebQHLxmss_SOJdY,329
|
|
25
|
+
beratools/gui/assets/open.gif,sha256=o8LL1OaDNkQ0Gcc9dO-1f1UZFAQ3ALc4svtqiUuWJPY,1062
|
|
26
|
+
beratools/gui/assets/open.png,sha256=v0OOwfTNGMmtdFbffCbxdYLaNZeRC9Cy5whAwi71oVw,524
|
|
27
|
+
beratools/gui/assets/tool.gif,sha256=2KGcUI_b-qFdrJJhgbx9pMZ8pExX7zH8nYvweRiQs6U,555
|
|
28
|
+
beratools/gui/assets/tool.png,sha256=35Txwum2l_aKeazF_I97ZaZAKHsrKQCGG-LZxEIFyZw,714
|
|
29
|
+
beratools/tools/__init__.py,sha256=lii4UkW4D105ZHpuoLi0REiZ_SA6le8T109Rl2qwkaU,129
|
|
30
|
+
beratools/tools/canopy_threshold_relative.py,sha256=pjja8uh4h1JFU5007GlNs5J5oDT2E-TjrcOww57jR0Y,29671
|
|
31
|
+
beratools/tools/centerline.py,sha256=S5UtGxi1bE7JTbMQ7QylhNoQ-Jtp4-sAbldtGMBGBbo,3973
|
|
32
|
+
beratools/tools/check_seed_line.py,sha256=ZEVF6TlGH3ke48O-b-I5RrwOhMExEUpoH-xGunAiL2k,1555
|
|
33
|
+
beratools/tools/common.py,sha256=iSq6JtLq07WScdQQsNODIczyHVAcVKmflok_vopQA0o,20587
|
|
34
|
+
beratools/tools/line_footprint_absolute.py,sha256=CeuN0M49itKLjQXrFGAfBbZFXX-rLQpV4qcgYikWmW8,6202
|
|
35
|
+
beratools/tools/line_footprint_fixed.py,sha256=YjWwmznf2Pc2N0iGAhbNEr7CZgReTEpEWsSHKoQrX1k,17410
|
|
36
|
+
beratools/tools/line_footprint_functions.py,sha256=KQXLcK8lBHETs0ecbJSwZVpaMTt19LOv0PuuLwskFPQ,31536
|
|
37
|
+
beratools/tools/line_footprint_relative.py,sha256=wA4IQUN9vXAbQJideImkl12odNUqjAU7-kqJAhF0kcM,3192
|
|
38
|
+
beratools/tools/tool_template.py,sha256=VU87tfGv5N6Jgfm-KMJlIbWdupiLOLY8XDhM9uC4gzo,2410
|
|
39
|
+
beratools/tools/vertex_optimization.py,sha256=m56YPrBeTrQYp5xCiENV2eKYoSurQW4ybYyRVvQ9M3g,1402
|
|
40
|
+
beratools-0.1.0.dist-info/METADATA,sha256=V42rMTSQDNWgezk_UYdaKzUR6oDN-B_S3ah10tpmJJI,5654
|
|
41
|
+
beratools-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
42
|
+
beratools-0.1.0.dist-info/entry_points.txt,sha256=ph47-gzMqhlWmHogQd9HTl4l8dWQUV8FhSOL2FaRrIM,53
|
|
43
|
+
beratools-0.1.0.dist-info/licenses/LICENSE,sha256=IZ1f9V4p0qV6UciLtuKE9nyPJIm6gQiWRBtG0ETDdfY,1069
|
|
44
|
+
beratools-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023, AppliedGRG
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|