ObjectNat 1.2.2__py3-none-any.whl → 1.3.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.
Potentially problematic release.
This version of ObjectNat might be problematic. Click here for more details.
- objectnat/_api.py +14 -14
- objectnat/_config.py +43 -47
- objectnat/_version.py +1 -1
- objectnat/methods/coverage_zones/__init__.py +3 -3
- objectnat/methods/coverage_zones/graph_coverage.py +11 -4
- objectnat/methods/coverage_zones/radius_voronoi_coverage.py +4 -2
- objectnat/methods/coverage_zones/stepped_coverage.py +20 -10
- objectnat/methods/isochrones/__init__.py +1 -1
- objectnat/methods/isochrones/isochrone_utils.py +167 -167
- objectnat/methods/isochrones/isochrones.py +31 -11
- objectnat/methods/noise/__init__.py +3 -3
- objectnat/methods/noise/noise_init_data.py +10 -10
- objectnat/methods/noise/noise_reduce.py +155 -155
- objectnat/methods/noise/noise_simulation.py +14 -13
- objectnat/methods/noise/noise_simulation_simplified.py +10 -9
- objectnat/methods/point_clustering/__init__.py +1 -1
- objectnat/methods/point_clustering/cluster_points_in_polygons.py +3 -3
- objectnat/methods/provision/__init__.py +1 -1
- objectnat/methods/provision/provision.py +112 -20
- objectnat/methods/provision/provision_exceptions.py +59 -59
- objectnat/methods/provision/provision_model.py +323 -348
- objectnat/methods/utils/__init__.py +1 -1
- objectnat/methods/utils/geom_utils.py +173 -173
- objectnat/methods/utils/graph_utils.py +5 -5
- objectnat/methods/utils/math_utils.py +32 -32
- objectnat/methods/visibility/__init__.py +6 -6
- objectnat/methods/visibility/visibility_analysis.py +9 -17
- objectnat-1.3.0.dist-info/METADATA +201 -0
- objectnat-1.3.0.dist-info/RECORD +33 -0
- {objectnat-1.2.2.dist-info → objectnat-1.3.0.dist-info}/WHEEL +1 -1
- objectnat-1.2.2.dist-info/METADATA +0 -116
- objectnat-1.2.2.dist-info/RECORD +0 -33
- {objectnat-1.2.2.dist-info/licenses → objectnat-1.3.0.dist-info}/LICENSE.txt +0 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: ObjectNat
|
|
3
|
+
Version: 1.3.0
|
|
4
|
+
Summary: ObjectNat is an open-source library created for geospatial analysis created by IDU team
|
|
5
|
+
License: BSD-3-Clause
|
|
6
|
+
Author: DDonnyy
|
|
7
|
+
Author-email: 63115678+DDonnyy@users.noreply.github.com
|
|
8
|
+
Requires-Python: >=3.11,<3.13
|
|
9
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Requires-Dist: geopandas (>=1.0.1,<2.0.0)
|
|
14
|
+
Requires-Dist: loguru (>=0.7.3,<0.8.0)
|
|
15
|
+
Requires-Dist: networkx (>=3.4.2,<4.0.0)
|
|
16
|
+
Requires-Dist: numpy (>=2.1.3,<3.0.0)
|
|
17
|
+
Requires-Dist: pandas (>=2.2.0,<3.0.0)
|
|
18
|
+
Requires-Dist: scikit-learn (>=1.4.0,<2.0.0)
|
|
19
|
+
Requires-Dist: tqdm (>=4.66.2,<5.0.0)
|
|
20
|
+
Description-Content-Type: text/x-rst
|
|
21
|
+
|
|
22
|
+
ObjectNat
|
|
23
|
+
=========
|
|
24
|
+
|
|
25
|
+
Object-oriented Network Analysis Tools
|
|
26
|
+
--------------------------------------
|
|
27
|
+
|
|
28
|
+
.. |badge-black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
|
|
29
|
+
:target: https://github.com/psf/black
|
|
30
|
+
:alt: Code style: black
|
|
31
|
+
|
|
32
|
+
.. |badge-pypi| image:: https://img.shields.io/pypi/v/objectnat.svg
|
|
33
|
+
:target: https://pypi.org/project/objectnat/
|
|
34
|
+
:alt: PyPI version
|
|
35
|
+
|
|
36
|
+
.. |badge-ci| image:: https://github.com/IDUclub/ObjectNat/actions/workflows/ci_pipeline.yml/badge.svg
|
|
37
|
+
:target: https://github.com/IDUclub/ObjectNat/actions/workflows/ci_pipeline.yml
|
|
38
|
+
:alt: CI
|
|
39
|
+
|
|
40
|
+
.. |badge-codecov| image:: https://codecov.io/gh/DDonnyy/ObjectNat/graph/badge.svg?token=K6JFSJ02GU
|
|
41
|
+
:target: https://codecov.io/gh/DDonnyy/ObjectNat
|
|
42
|
+
:alt: Coverage
|
|
43
|
+
|
|
44
|
+
.. |badge-license| image:: https://img.shields.io/badge/license-BSD--3--Clause-blue.svg
|
|
45
|
+
:target: https://opensource.org/licenses/BSD-3-Clause
|
|
46
|
+
:alt: License
|
|
47
|
+
|
|
48
|
+
.. |badge-docs| image:: https://img.shields.io/badge/docs-latest-4aa0d5?logo=readthedocs
|
|
49
|
+
:target: https://iduclub.github.io/ObjectNat/
|
|
50
|
+
:alt: Docs
|
|
51
|
+
|
|
52
|
+
|badge-black| |badge-pypi| |badge-ci| |badge-codecov| |badge-license| |badge-docs|
|
|
53
|
+
|
|
54
|
+
`РИДМИ (Russian) <https://github.com/IDUclub/ObjectNat/blob/main/README_RU.rst>`__
|
|
55
|
+
|
|
56
|
+
.. image:: https://raw.githubusercontent.com/IDUclub/ObjectNat/main/docs/_static/ONlogo.svg
|
|
57
|
+
:align: center
|
|
58
|
+
:width: 400
|
|
59
|
+
:alt: ObjectNat logo
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
**ObjectNat** is an open-source library developed by the **IDU** team
|
|
63
|
+
for spatial and network analysis in urban studies.
|
|
64
|
+
The library provides tools for analyzing **accessibility**, **visibility**,
|
|
65
|
+
**noise propagation**, and **service provision**.
|
|
66
|
+
----
|
|
67
|
+
|
|
68
|
+
Key Features
|
|
69
|
+
------------
|
|
70
|
+
|
|
71
|
+
Each feature includes a **Jupyter Notebook example** and **full documentation**.
|
|
72
|
+
|
|
73
|
+
1. **Isochrones and Transport Accessibility**
|
|
74
|
+
|
|
75
|
+
Isochrones represent areas reachable from an origin point within a specified time along a transport network.
|
|
76
|
+
This feature allows the analysis of transport accessibility using pedestrian, road,
|
|
77
|
+
public transport, or multimodal graphs.
|
|
78
|
+
|
|
79
|
+
The library supports several methods for building isochrones:
|
|
80
|
+
|
|
81
|
+
- **Basic isochrones**: display a single zone reachable within a specified time.
|
|
82
|
+
- **Step isochrones**: divide the accessibility area into time intervals (e.g., 3, 5, 10 minutes).
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
📘 `Example <https://iduclub.github.io/ObjectNat/methods/examples/isochrones.html>`__
|
|
86
|
+
🔗 `Documentation <https://iduclub.github.io/ObjectNat/methods/isochrones.html>`__
|
|
87
|
+
|
|
88
|
+
2. **Graph Coverage Zones from Points**
|
|
89
|
+
|
|
90
|
+
A function for generating **coverage areas** from a set of origin points using a transport network.
|
|
91
|
+
It computes the area reachable from each point by **travel time** or **distance**,
|
|
92
|
+
then builds polygons using **Voronoi diagrams** and clips them by a given boundary if specified.
|
|
93
|
+
|
|
94
|
+
📘 `Example <https://iduclub.github.io/ObjectNat/methods/examples/coverage.html>`__
|
|
95
|
+
🔗 `Documentation <https://iduclub.github.io/ObjectNat/methods/coverage.html>`__
|
|
96
|
+
|
|
97
|
+
3. **Service Provision Analysis**
|
|
98
|
+
|
|
99
|
+
A function to evaluate how well residential buildings and their populations are provided
|
|
100
|
+
with services (e.g., schools, clinics) that have limited **capacity**
|
|
101
|
+
and a defined **accessibility threshold** (in minutes or meters).
|
|
102
|
+
The function models the **balance between supply and demand**,
|
|
103
|
+
assessing how well services meet the needs of nearby buildings within an acceptable time.
|
|
104
|
+
|
|
105
|
+
📘 `Example <https://iduclub.github.io/ObjectNat/methods/examples/provision.html>`__
|
|
106
|
+
🔗 `Documentation <https://iduclub.github.io/ObjectNat/methods/provision.html>`__
|
|
107
|
+
|
|
108
|
+
4. **Visibility Analysis**
|
|
109
|
+
|
|
110
|
+
A function for evaluating visibility from a given point or set of points to nearby buildings within a given radius.
|
|
111
|
+
It is used to assess visual accessibility in urban environments.
|
|
112
|
+
A module is also implemented for computing **visibility coverage zones**
|
|
113
|
+
using a dense observer grid (recommended ~1000 points with a 10–20 m spacing).
|
|
114
|
+
Points can be generated along the transport network and distributed across its edges.
|
|
115
|
+
|
|
116
|
+
📘 `Example <https://iduclub.github.io/ObjectNat/methods/examples/visibility.html>`__
|
|
117
|
+
🔗 `Documentation <https://iduclub.github.io/ObjectNat/methods/visibility.html>`__
|
|
118
|
+
|
|
119
|
+
5. **Noise Simulation & Noise Frame**
|
|
120
|
+
|
|
121
|
+
Simulation of noise propagation from sources, taking into account **obstacles**, **vegetation**,
|
|
122
|
+
and **environmental factors**.
|
|
123
|
+
|
|
124
|
+
📘 `Example <https://iduclub.github.io/ObjectNat/methods/examples/noise.html>`__
|
|
125
|
+
🔗 `Documentation <https://iduclub.github.io/ObjectNat/methods/noise.html>`__
|
|
126
|
+
🧠 `Detailed theory <https://github.com/DDonnyy/ObjectNat/wiki/Noise-simulation>`__
|
|
127
|
+
|
|
128
|
+
6. **Point Clusterization**
|
|
129
|
+
|
|
130
|
+
A function for constructing **cluster polygons** based on a set of points using:
|
|
131
|
+
|
|
132
|
+
- Minimum **distance** between points.
|
|
133
|
+
- Minimum **number of points** in a cluster.
|
|
134
|
+
|
|
135
|
+
The function can also compute the **ratio of service types** in each cluster
|
|
136
|
+
for spatial analysis of service composition.
|
|
137
|
+
|
|
138
|
+
📘 `Example <https://iduclub.github.io/ObjectNat/methods/examples/clustering.html>`__
|
|
139
|
+
🔗 `Documentation <https://iduclub.github.io/ObjectNat/methods/clustering.html>`__
|
|
140
|
+
|
|
141
|
+
----
|
|
142
|
+
|
|
143
|
+
City Graphs via *IduEdu*
|
|
144
|
+
------------------------
|
|
145
|
+
|
|
146
|
+
For optimal performance, **ObjectNat** is recommended to be used with graphs
|
|
147
|
+
created by the `IduEdu <https://github.com/IDUclub/IduEdu>`_ library.
|
|
148
|
+
|
|
149
|
+
**IduEdu** is an open-source Python library designed for building and processing
|
|
150
|
+
complex urban networks based on OpenStreetMap data.
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
**IduEdu** can be installed via ``pip``::
|
|
154
|
+
|
|
155
|
+
pip install IduEdu
|
|
156
|
+
|
|
157
|
+
Example usage::
|
|
158
|
+
|
|
159
|
+
from iduedu import get_4326_boundary, get_intermodal_graph
|
|
160
|
+
|
|
161
|
+
poly = get_4326_boundary(osm_id=1114252)
|
|
162
|
+
G_intermodal = get_intermodal_graph(territory=poly, clip_by_territory=True)
|
|
163
|
+
|
|
164
|
+
----
|
|
165
|
+
|
|
166
|
+
Installation
|
|
167
|
+
------------
|
|
168
|
+
|
|
169
|
+
**ObjectNat** can be installed via ``pip``::
|
|
170
|
+
|
|
171
|
+
pip install ObjectNat
|
|
172
|
+
|
|
173
|
+
----
|
|
174
|
+
|
|
175
|
+
Configuration
|
|
176
|
+
-------------
|
|
177
|
+
|
|
178
|
+
You can adjust logging and progress bar output using the config module::
|
|
179
|
+
|
|
180
|
+
from objectnat import config
|
|
181
|
+
|
|
182
|
+
config.change_logger_lvl("INFO") # mute debug logs
|
|
183
|
+
config.set_enable_tqdm(False) # disable tqdm progress bars
|
|
184
|
+
|
|
185
|
+
----
|
|
186
|
+
|
|
187
|
+
Contacts
|
|
188
|
+
--------
|
|
189
|
+
|
|
190
|
+
- `NCCR <https://actcognitive.org/>`_ — National Center for Cognitive Research
|
|
191
|
+
- `IDU <https://idu.itmo.ru/>`_ — Institute of Design and Urban Studies
|
|
192
|
+
- `Natalya Chichkova <https://t.me/nancy_nat>`_ — Project Manager
|
|
193
|
+
- `Danila Oleynikov (Donny) <https://t.me/ddonny_dd>`_ — Lead Software Engineer
|
|
194
|
+
|
|
195
|
+
----
|
|
196
|
+
|
|
197
|
+
Publications
|
|
198
|
+
------------
|
|
199
|
+
|
|
200
|
+
Coming soon.
|
|
201
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
objectnat/__init__.py,sha256=VZ0TaIuB73EOl5Tin4Cs6-TCEOgBImCNYozwHD3bI_g,248
|
|
2
|
+
objectnat/_api.py,sha256=tor-BVRvbVeqGUrFlNc3pVJ_N3gpyDgMpxQfHgV5Y1U,725
|
|
3
|
+
objectnat/_config.py,sha256=OVOw0yORiirljN866xs45OLcRFhOV-xznZU6kI58ScI,1188
|
|
4
|
+
objectnat/_version.py,sha256=5O6-qxBThm-gXXX0GfrBRhqSXFn9X_TTRdp9PZJHO6o,19
|
|
5
|
+
objectnat/methods/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
objectnat/methods/coverage_zones/__init__.py,sha256=iebp-RbU60GRjIosd0Yvypz8-XNCme7f1Aah2nqynig,164
|
|
7
|
+
objectnat/methods/coverage_zones/graph_coverage.py,sha256=0ct66u6YblxcQmVtqpa-yX2xpb83Jagxxd6HkgCBVP4,4264
|
|
8
|
+
objectnat/methods/coverage_zones/radius_voronoi_coverage.py,sha256=okU6rcCwyNOXbHORYxPyh_j_J2LnQUEiD1ROiTYSndA,1627
|
|
9
|
+
objectnat/methods/coverage_zones/stepped_coverage.py,sha256=QVzRP_IKqjuWBWGYTnd4FFKzWtL_xxMXvO-_GpDlL2Y,5619
|
|
10
|
+
objectnat/methods/isochrones/__init__.py,sha256=inpyVZ4Mfz53k8HxW1zz3XFAqOE1xOQfpnfsS2f-a58,91
|
|
11
|
+
objectnat/methods/isochrones/isochrone_utils.py,sha256=84OLlj0tbnJAg7H_k0Il3wRHzdFhlMNU4G3w8z1_x6c,7037
|
|
12
|
+
objectnat/methods/isochrones/isochrones.py,sha256=qMBH8GMbfWcTgw-PMcX4FEIyLc2EB_p7Uox6_Qq0a8g,11465
|
|
13
|
+
objectnat/methods/noise/__init__.py,sha256=fXlEuZ1z9Pw7cP4YRcbLaQnEgJIRkFdr2dTe2ypMhgg,189
|
|
14
|
+
objectnat/methods/noise/noise_init_data.py,sha256=jMFOqi5T7FYqcKjYg8AOIr_VNYbRZQks9wGULYNaMlw,513
|
|
15
|
+
objectnat/methods/noise/noise_reduce.py,sha256=KuVYLF5-hQGDqki6KU4BtgEufQ8tkOZvBWjFFjgw4m4,7040
|
|
16
|
+
objectnat/methods/noise/noise_simulation.py,sha256=dO94kumoK--OVAqQ-rbWTC8M_2r-j5SIC_dDM_yrCrA,22360
|
|
17
|
+
objectnat/methods/noise/noise_simulation_simplified.py,sha256=J2vt2Qj5wYHdo2AkHJhlgd8SAsOEFRA0SMOhZMJJ14s,11058
|
|
18
|
+
objectnat/methods/point_clustering/__init__.py,sha256=SLRcjLZ_NyQvKBu5SHZTt7snCWpa0n7HlJqxlACJMyM,62
|
|
19
|
+
objectnat/methods/point_clustering/cluster_points_in_polygons.py,sha256=Bu5RONhMCWivCCl8dZjh9DlhgEV-BGy0T1DLY8sldV4,5144
|
|
20
|
+
objectnat/methods/provision/__init__.py,sha256=a8h_Md3rBnmXK0o-MuaYiTIMRFMFu0bRZJ7ZP0P2hDQ,81
|
|
21
|
+
objectnat/methods/provision/provision.py,sha256=IL0PWNpm6fdzdyGlzRbDl-i4lU-OVLhBt0uGuH8qfmw,9730
|
|
22
|
+
objectnat/methods/provision/provision_exceptions.py,sha256=ofZOEv0jIZRNBgfrwqphkIHUWaGDo2WOa-hf7EuCM1g,1746
|
|
23
|
+
objectnat/methods/provision/provision_model.py,sha256=e8hfolPq8LK3SLI1nXffXqjtHgG0VWvwV7VFMzPbYzI,14024
|
|
24
|
+
objectnat/methods/utils/__init__.py,sha256=1jhuPYwWwlNALtiO6n5IF-5z85nLKX4aC-ZaI85LEMM,53
|
|
25
|
+
objectnat/methods/utils/geom_utils.py,sha256=lCuMayV1iu8WJVVtwbswxfvl4B4dwxAqRcFfF1jd98M,6558
|
|
26
|
+
objectnat/methods/utils/graph_utils.py,sha256=5GI7WwwkK7tA72gpoMMMgoqugrIeomJK-OC5bjCT1dk,12637
|
|
27
|
+
objectnat/methods/utils/math_utils.py,sha256=AoOx0hjIRfir-Fw2s2t6PubfybHuVoLKLbv-SJE0BGs,865
|
|
28
|
+
objectnat/methods/visibility/__init__.py,sha256=vgrN4OTnap4fYfqm5GgNi787TZ85GbS9LbGfTIyTg-I,167
|
|
29
|
+
objectnat/methods/visibility/visibility_analysis.py,sha256=Y76mRbYHBy8O1iUaOTBIA_Wy6OHJL8cKfXAqRWWe7_8,20504
|
|
30
|
+
objectnat-1.3.0.dist-info/LICENSE.txt,sha256=gI3AMqmBc4AdVW3_l1YV4pBBhle1fvAqiK62uA543uI,1526
|
|
31
|
+
objectnat-1.3.0.dist-info/METADATA,sha256=S0F3otCDjST9WJzOvLXYwzfFCvi-vhVCSg0UYjyEiY4,7370
|
|
32
|
+
objectnat-1.3.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
33
|
+
objectnat-1.3.0.dist-info/RECORD,,
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: ObjectNat
|
|
3
|
-
Version: 1.2.2
|
|
4
|
-
Summary: ObjectNat is an open-source library created for geospatial analysis created by IDU team
|
|
5
|
-
License: BSD-3-Clause
|
|
6
|
-
License-File: LICENSE.txt
|
|
7
|
-
Author: DDonnyy
|
|
8
|
-
Author-email: 63115678+DDonnyy@users.noreply.github.com
|
|
9
|
-
Requires-Python: >=3.10,<3.13
|
|
10
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
11
|
-
Classifier: Programming Language :: Python :: 3
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
-
Requires-Dist: geopandas (>=1.0.1,<2.0.0)
|
|
16
|
-
Requires-Dist: loguru (>=0.7.3,<0.8.0)
|
|
17
|
-
Requires-Dist: networkx (>=3.4.2,<4.0.0)
|
|
18
|
-
Requires-Dist: numpy (>=2.1.3,<3.0.0)
|
|
19
|
-
Requires-Dist: pandarallel (>=1.6.5,<2.0.0)
|
|
20
|
-
Requires-Dist: pandas (>=2.2.0,<3.0.0)
|
|
21
|
-
Requires-Dist: scikit-learn (>=1.4.0,<2.0.0)
|
|
22
|
-
Requires-Dist: tqdm (>=4.66.2,<5.0.0)
|
|
23
|
-
Description-Content-Type: text/markdown
|
|
24
|
-
|
|
25
|
-
# ObjectNat
|
|
26
|
-
|
|
27
|
-
[](https://github.com/psf/black)
|
|
28
|
-
[](https://pypi.org/project/objectnat/)
|
|
29
|
-
[](https://github.com/DDonnyy/ObjecNat/actions/workflows/ci_pipeline.yml)
|
|
30
|
-
[](https://codecov.io/gh/DDonnyy/ObjectNat)
|
|
31
|
-
[](https://opensource.org/licenses/MIT)
|
|
32
|
-
|
|
33
|
-
- [РИДМИ (Russian)](README_ru.md)
|
|
34
|
-
<p align="center">
|
|
35
|
-
<img src="https://github.com/user-attachments/assets/ed0f226e-1728-4659-9e21-b4d499e703cd" alt="logo" width="400">
|
|
36
|
-
</p>
|
|
37
|
-
|
|
38
|
-
#### **ObjectNat** is an open-source library created for geospatial analysis created by **IDU team**
|
|
39
|
-
|
|
40
|
-
---
|
|
41
|
-
|
|
42
|
-
## Features and How to Use
|
|
43
|
-
|
|
44
|
-
Each feature is accompanied by a Jupyter notebook example and full documentation.
|
|
45
|
-
|
|
46
|
-
1. **[Isochrones and Transport Accessibility](./examples/isochrone_generator.ipynb)**
|
|
47
|
-
Analyze areas reachable within a given time along a transport network.
|
|
48
|
-
📄 [See documentation](https://iduclub.github.io/ObjectNat/latest/usage/isochrones.html)
|
|
49
|
-
|
|
50
|
-
2. **[Coverage Zones](./examples/coverage_zones.ipynb)**
|
|
51
|
-
Build zones of reachability for each point using routing or simple radius.
|
|
52
|
-
📄 [See documentation](https://iduclub.github.io/ObjectNat/latest/usage/coverage.html)
|
|
53
|
-
|
|
54
|
-
3. **[Service Provision Analysis](./examples/calculate_provision.ipynb)**
|
|
55
|
-
Evaluate service availability and model demand-supply balance.
|
|
56
|
-
📄 [See documentation](https://iduclub.github.io/ObjectNat/latest/usage/provision.html)
|
|
57
|
-
|
|
58
|
-
4. **[Visibility Analysis](./examples/visibility_analysis.ipynb)**
|
|
59
|
-
Estimate visibility to nearby buildings from selected points.
|
|
60
|
-
📄 [See documentation](https://iduclub.github.io/ObjectNat/latest/usage/visibility.html)
|
|
61
|
-
|
|
62
|
-
5. **[Noise Simulation](./examples/noise_simulation.ipynb)**
|
|
63
|
-
Simulate noise propagation considering obstacles and environment.
|
|
64
|
-
📄 [See documentation](https://iduclub.github.io/ObjectNat/latest/usage/noise.html)
|
|
65
|
-
🔗 [Detailed theory in the Wiki](https://github.com/DDonnyy/ObjectNat/wiki/Noise-simulation)
|
|
66
|
-
|
|
67
|
-
6. **[Point Clusterization](./examples/point_clusterization.ipynb)**
|
|
68
|
-
Group nearby points into clusters and analyze service composition.
|
|
69
|
-
📄 [See documentation](https://iduclub.github.io/ObjectNat/latest/usage/clustering.html)
|
|
70
|
-
|
|
71
|
-
---
|
|
72
|
-
|
|
73
|
-
## City graphs
|
|
74
|
-
|
|
75
|
-
To ensure optimal performance of ObjectNat's geospatial analysis functions, it's recommended to utilize urban graphs sourced from the [IduEdu](https://github.com/DDonnyy/IduEdu) library.
|
|
76
|
-
**IduEdu** is an open-source Python library designed for the creation and manipulation of complex city networks derived from OpenStreetMap data.
|
|
77
|
-
|
|
78
|
-
**IduEdu** can be installed with ``pip``:
|
|
79
|
-
```
|
|
80
|
-
pip install IduEdu
|
|
81
|
-
```
|
|
82
|
-
---
|
|
83
|
-
|
|
84
|
-
## Installation
|
|
85
|
-
|
|
86
|
-
**ObjectNat** can be installed with ``pip``:
|
|
87
|
-
|
|
88
|
-
```
|
|
89
|
-
pip install ObjectNat
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
---
|
|
93
|
-
|
|
94
|
-
### Configuration changes
|
|
95
|
-
|
|
96
|
-
```python
|
|
97
|
-
from objectnat import config
|
|
98
|
-
|
|
99
|
-
config.change_logger_lvl('INFO') # To mute all debug msgs
|
|
100
|
-
config.set_enable_tqdm(False) # To mute all tqdm's progress bars
|
|
101
|
-
```
|
|
102
|
-
|
|
103
|
-
---
|
|
104
|
-
|
|
105
|
-
## Contacts
|
|
106
|
-
|
|
107
|
-
- [NCCR](https://actcognitive.org/) - National Center for Cognitive Research
|
|
108
|
-
- [IDU](https://idu.itmo.ru/) - Institute of Design and Urban Studies
|
|
109
|
-
- [Natalya Chichkova](https://t.me/nancy_nat) - project manager
|
|
110
|
-
- [Danila Oleynikov (Donny)](https://t.me/ddonny_dd) - lead software engineer
|
|
111
|
-
|
|
112
|
-
---
|
|
113
|
-
|
|
114
|
-
## Publications
|
|
115
|
-
|
|
116
|
-
_Coming soon._
|
objectnat-1.2.2.dist-info/RECORD
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
objectnat/__init__.py,sha256=VZ0TaIuB73EOl5Tin4Cs6-TCEOgBImCNYozwHD3bI_g,248
|
|
2
|
-
objectnat/_api.py,sha256=0R1nypAQUcbQ9YSLw_MUgUWoNl8c1zMZteV8wGzdkvc,711
|
|
3
|
-
objectnat/_config.py,sha256=fGPsMZqA8FVBBOINxRiTFkOOZsNLyablM5G0tdKeQB4,1306
|
|
4
|
-
objectnat/_version.py,sha256=rTrUbw2CeioGu2bqQWB_ZsbWrK8mfBzgGdEKgPrvi_M,19
|
|
5
|
-
objectnat/methods/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
objectnat/methods/coverage_zones/__init__.py,sha256=3uTDC1xf3zgQRqSQR4URp__HjZ8eVUtjK8r3mGq-zuQ,161
|
|
7
|
-
objectnat/methods/coverage_zones/graph_coverage.py,sha256=e4seTrhOTqEZ8DhE9xiH_fe-TwPNZXH3ujEq87CuEA0,4190
|
|
8
|
-
objectnat/methods/coverage_zones/radius_voronoi_coverage.py,sha256=A-O6WhgpJTizIHGiJ9JuP882iHbNejh0EW10H493kDM,1631
|
|
9
|
-
objectnat/methods/coverage_zones/stepped_coverage.py,sha256=e-zNE0JP4Q1Crb-JEbIZc0dYFzZXle2LjTxJPGS-7XE,5659
|
|
10
|
-
objectnat/methods/isochrones/__init__.py,sha256=bDfUZPbS3_PuTEB2QcRTYjvyJtUvjbDhAw6QJvD_ih4,90
|
|
11
|
-
objectnat/methods/isochrones/isochrone_utils.py,sha256=dJwvoGXUypwU2_oF-rdxNZm90gOi-RUp_0WM1C2HaPU,6870
|
|
12
|
-
objectnat/methods/isochrones/isochrones.py,sha256=VgpwubX7VEFStXyXM0B58cpFoCn3AboVekIU8GtXWls,11573
|
|
13
|
-
objectnat/methods/noise/__init__.py,sha256=-zWdeD3sUr4HO8yEHiQuQm_FXviqZONffkthJ5v9VtA,186
|
|
14
|
-
objectnat/methods/noise/noise_init_data.py,sha256=Vp-R_yH7CgYqZEtbGAdr1iiIbgauReniLQ_a2TcszhY,503
|
|
15
|
-
objectnat/methods/noise/noise_reduce.py,sha256=B85ifAN_mHiBKJso-cZiSkj7588w2sA-ugGvEal4CBw,6885
|
|
16
|
-
objectnat/methods/noise/noise_simulation.py,sha256=-2pTzV-nShJfhgPg4AejKlMSvlTlnQDBCngLPZhFX8w,22389
|
|
17
|
-
objectnat/methods/noise/noise_simulation_simplified.py,sha256=igj4hI3rPDdKYgabq0aH0Evhy2jg-uTstLSqFjx2VSw,11094
|
|
18
|
-
objectnat/methods/point_clustering/__init__.py,sha256=pX2qDUCvs9LJI36mr65vbdRml6AE8hIYYxIJLdQZQxs,61
|
|
19
|
-
objectnat/methods/point_clustering/cluster_points_in_polygons.py,sha256=reY5ekJrAJUdWwVMvvZBp5T34H4K2V4mt3rQuyoUYPQ,5193
|
|
20
|
-
objectnat/methods/provision/__init__.py,sha256=0Uy66n2xH0Y45JyhIYHEVfC2rig6bMYp6PV2KkNhbK8,80
|
|
21
|
-
objectnat/methods/provision/provision.py,sha256=xf3y5ZfGD1rGSCqvUd2JFSEzcPe7Af_bIyA38pBTtrU,5157
|
|
22
|
-
objectnat/methods/provision/provision_exceptions.py,sha256=lznEmlmZDzGIOtapZVqZDMutIi5eGbFuVCYeVa7VZWk,1687
|
|
23
|
-
objectnat/methods/provision/provision_model.py,sha256=edzXSnGwTjc5kw4k6ZbO886uHp6xIyqSNdJ9YuZTdmE,14998
|
|
24
|
-
objectnat/methods/utils/__init__.py,sha256=sGXy4KUOe5I0UYztnB4rIl2HNd-oqnqRYrBsiU-dpNY,52
|
|
25
|
-
objectnat/methods/utils/geom_utils.py,sha256=PdUjQDZ8drJ1ZFCFabDJnD6oFvgHeAQrsbeivuDOdcI,6385
|
|
26
|
-
objectnat/methods/utils/graph_utils.py,sha256=aOtFZbuPAiGhkglMJBi9xcsb8XBbVFW7535DrhjWx1w,12667
|
|
27
|
-
objectnat/methods/utils/math_utils.py,sha256=Vc8U15LtFOwgIt1YSOSKWYOIiW_1XLuMGOa6ejBpEUk,839
|
|
28
|
-
objectnat/methods/visibility/__init__.py,sha256=Mx1kaoV-yfQUxlMkgNF4AhjSweFEJMEx3NBis5OM3mA,161
|
|
29
|
-
objectnat/methods/visibility/visibility_analysis.py,sha256=nXcDQ9zewpM4FFSXuYophUNsh6wiHSIHjM88vV6Iv_U,20843
|
|
30
|
-
objectnat-1.2.2.dist-info/licenses/LICENSE.txt,sha256=gI3AMqmBc4AdVW3_l1YV4pBBhle1fvAqiK62uA543uI,1526
|
|
31
|
-
objectnat-1.2.2.dist-info/METADATA,sha256=og2Gul8hS_YIua9eXocfsKwFZ3-juQGp6hrAXFXvy-c,4536
|
|
32
|
-
objectnat-1.2.2.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
|
|
33
|
-
objectnat-1.2.2.dist-info/RECORD,,
|
|
File without changes
|