objscale 0.1.6__tar.gz → 0.2.0__tar.gz
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.
- {objscale-0.1.6 → objscale-0.2.0}/PKG-INFO +2 -2
- {objscale-0.1.6 → objscale-0.2.0}/README.md +2 -2
- {objscale-0.1.6 → objscale-0.2.0}/objscale/__init__.py +11 -3
- objscale-0.2.0/objscale/_fractal_dimensions.py +964 -0
- objscale-0.2.0/objscale/_object_analysis.py +425 -0
- objscale-0.2.0/objscale/_size_distributions.py +362 -0
- {objscale-0.1.6 → objscale-0.2.0}/objscale/_utils.py +26 -14
- {objscale-0.1.6 → objscale-0.2.0}/objscale.egg-info/PKG-INFO +2 -2
- {objscale-0.1.6 → objscale-0.2.0}/objscale.egg-info/SOURCES.txt +1 -2
- {objscale-0.1.6 → objscale-0.2.0}/pyproject.toml +1 -1
- objscale-0.1.6/objscale/_fractal_dimensions.py +0 -763
- objscale-0.1.6/objscale/_object_analysis.py +0 -318
- objscale-0.1.6/objscale/_size_distributions.py +0 -266
- objscale-0.1.6/tests/test_objscale.py +0 -232
- {objscale-0.1.6 → objscale-0.2.0}/LICENSE +0 -0
- {objscale-0.1.6 → objscale-0.2.0}/objscale.egg-info/dependency_links.txt +0 -0
- {objscale-0.1.6 → objscale-0.2.0}/objscale.egg-info/requires.txt +0 -0
- {objscale-0.1.6 → objscale-0.2.0}/objscale.egg-info/top_level.txt +0 -0
- {objscale-0.1.6 → objscale-0.2.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: objscale
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Object-based analysis functions for fractal dimensions and size distributions
|
|
5
5
|
Author-email: Thomas DeWitt <thomas.dewitt@utah.edu>
|
|
6
6
|
License: MIT
|
|
@@ -50,7 +50,7 @@ Object-based analysis functions for fractal dimensions and size distributions in
|
|
|
50
50
|
The package implements methods from two main papers:
|
|
51
51
|
|
|
52
52
|
- [DeWitt & Garrett (2024)](https://acp.copernicus.org/articles/24/8457/2024/) - finite domain effects in size distributions
|
|
53
|
-
- DeWitt et al. (
|
|
53
|
+
- [DeWitt et al. (2025)](https://egusphere.copernicus.org/preprints/2025/egusphere-2025-3486/) - fractal dimensions for cloud field characterization
|
|
54
54
|
|
|
55
55
|
## Key Functions
|
|
56
56
|
|
|
@@ -9,7 +9,7 @@ Object-based analysis functions for fractal dimensions and size distributions in
|
|
|
9
9
|
The package implements methods from two main papers:
|
|
10
10
|
|
|
11
11
|
- [DeWitt & Garrett (2024)](https://acp.copernicus.org/articles/24/8457/2024/) - finite domain effects in size distributions
|
|
12
|
-
- DeWitt et al. (
|
|
12
|
+
- [DeWitt et al. (2025)](https://egusphere.copernicus.org/preprints/2025/egusphere-2025-3486/) - fractal dimensions for cloud field characterization
|
|
13
13
|
|
|
14
14
|
## Key Functions
|
|
15
15
|
|
|
@@ -135,4 +135,4 @@ Anthropic
|
|
|
135
135
|
|
|
136
136
|
## License
|
|
137
137
|
|
|
138
|
-
MIT License
|
|
138
|
+
MIT License
|
|
@@ -9,15 +9,19 @@ from ._fractal_dimensions import (
|
|
|
9
9
|
individual_fractal_dimension,
|
|
10
10
|
ensemble_correlation_dimension,
|
|
11
11
|
ensemble_box_dimension,
|
|
12
|
-
ensemble_coarsening_dimension,
|
|
13
12
|
total_perimeter,
|
|
14
13
|
total_number,
|
|
15
14
|
isolate_largest_structure,
|
|
16
15
|
coarsen_array,
|
|
16
|
+
get_coords_of_boundaries,
|
|
17
|
+
get_locations_from_pixel_sizes,
|
|
18
|
+
correlation_integral,
|
|
19
|
+
label_size,
|
|
17
20
|
)
|
|
18
21
|
|
|
19
22
|
from ._object_analysis import (
|
|
20
23
|
get_structure_props,
|
|
24
|
+
get_every_boundary_perimeter,
|
|
21
25
|
remove_structures_touching_border_nan,
|
|
22
26
|
label_periodic_boundaries,
|
|
23
27
|
remove_structure_holes,
|
|
@@ -36,12 +40,16 @@ __all__ = [
|
|
|
36
40
|
'individual_fractal_dimension',
|
|
37
41
|
'ensemble_correlation_dimension',
|
|
38
42
|
'ensemble_box_dimension',
|
|
39
|
-
'ensemble_coarsening_dimension',
|
|
40
43
|
'total_perimeter',
|
|
41
44
|
'total_number',
|
|
42
45
|
'isolate_largest_structure',
|
|
43
46
|
'coarsen_array',
|
|
47
|
+
'get_coords_of_boundaries',
|
|
48
|
+
'get_locations_from_pixel_sizes',
|
|
49
|
+
'correlation_integral',
|
|
50
|
+
'label_size',
|
|
44
51
|
'get_structure_props',
|
|
52
|
+
'get_every_boundary_perimeter',
|
|
45
53
|
'remove_structures_touching_border_nan',
|
|
46
54
|
'label_periodic_boundaries',
|
|
47
55
|
'remove_structure_holes',
|
|
@@ -50,7 +58,7 @@ __all__ = [
|
|
|
50
58
|
'encase_in_value',
|
|
51
59
|
]
|
|
52
60
|
|
|
53
|
-
__version__ = "0.
|
|
61
|
+
__version__ = "0.2.0"
|
|
54
62
|
__author__ = "Thomas DeWitt"
|
|
55
63
|
__email__ = "thomas.dewitt@utah.edu"
|
|
56
64
|
__description__ = "Object-based analysis functions for fractal dimensions and size distributions"
|