ObjectNat 0.2.3__tar.gz → 0.2.4__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.

Potentially problematic release.


This version of ObjectNat might be problematic. Click here for more details.

Files changed (22) hide show
  1. {objectnat-0.2.3 → objectnat-0.2.4}/PKG-INFO +2 -3
  2. {objectnat-0.2.3 → objectnat-0.2.4}/pyproject.toml +2 -3
  3. objectnat-0.2.4/src/objectnat/_version.py +1 -0
  4. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/methods/provision/provision_model.py +2 -4
  5. objectnat-0.2.3/src/objectnat/_version.py +0 -1
  6. {objectnat-0.2.3 → objectnat-0.2.4}/LICENSE.txt +0 -0
  7. {objectnat-0.2.3 → objectnat-0.2.4}/README.md +0 -0
  8. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/__init__.py +0 -0
  9. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/_api.py +0 -0
  10. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/_config.py +0 -0
  11. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/methods/__init__.py +0 -0
  12. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/methods/balanced_buildings.py +0 -0
  13. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/methods/cluster_points_in_polygons.py +0 -0
  14. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/methods/coverage_zones.py +0 -0
  15. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/methods/isochrones.py +0 -0
  16. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/methods/living_buildings_osm.py +0 -0
  17. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/methods/provision/__init__.py +0 -0
  18. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/methods/provision/provision.py +0 -0
  19. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/methods/provision/provision_exceptions.py +0 -0
  20. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/methods/visibility_analysis.py +0 -0
  21. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/utils/__init__.py +0 -0
  22. {objectnat-0.2.3 → objectnat-0.2.4}/src/objectnat/utils/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ObjectNat
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: ObjectNat is an open-source library created for geospatial analysis created by IDU team
5
5
  License: BSD-3-Clause
6
6
  Author: DDonnyy
@@ -12,10 +12,9 @@ Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Requires-Dist: geopandas (>=0.14.3,<0.15.0)
15
- Requires-Dist: iduedu (>=0.1.4,<0.2.0)
15
+ Requires-Dist: iduedu (>=0.2.0,<0.3.0)
16
16
  Requires-Dist: joblib (>=1.4.2,<2.0.0)
17
17
  Requires-Dist: jupyter (>=1.1.1,<2.0.0)
18
- Requires-Dist: networkit (>=11.0,<12.0)
19
18
  Requires-Dist: networkx (>=3.2.1,<4.0.0)
20
19
  Requires-Dist: numpy (>=1.23.5,<2.0.0)
21
20
  Requires-Dist: pandarallel (>=1.6.5,<2.0.0)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "ObjectNat"
3
- version = "0.2.3"
3
+ version = "0.2.4"
4
4
  description = "ObjectNat is an open-source library created for geospatial analysis created by IDU team"
5
5
  license = "BSD-3-Clause"
6
6
  authors = ["DDonnyy <63115678+DDonnyy@users.noreply.github.com>"]
@@ -16,10 +16,9 @@ geopandas = "^0.14.3"
16
16
  tqdm = "^4.66.2"
17
17
  pandarallel = "^1.6.5"
18
18
  networkx = "^3.2.1"
19
- networkit = "^11.0"
20
19
  pulp = "^2.8.0"
21
20
  population-restorator = "^0.2.3"
22
- iduedu = "^0.1.4"
21
+ iduedu = "^0.2.0"
23
22
  joblib = "^1.4.2"
24
23
  scikit-learn = "^1.4.0"
25
24
  jupyter = "^1.1.1"
@@ -0,0 +1 @@
1
+ VERSION = "0.2.4"
@@ -4,8 +4,9 @@ from typing import Tuple
4
4
  import geopandas as gpd
5
5
  import numpy as np
6
6
  import pandas as pd
7
- from shapely import LineString
8
7
  from pandarallel import pandarallel
8
+ from shapely import LineString
9
+
9
10
  from objectnat import config
10
11
 
11
12
  from .provision_exceptions import CapacityKeyError, DemandKeyError
@@ -113,9 +114,6 @@ class Provision:
113
114
  self.threshold,
114
115
  )
115
116
 
116
- # self.demanded_buildings['provision_value'] = self.demanded_buildings['provision_value'].fillna(0)
117
- # self.services = self.services.fillna(0)
118
-
119
117
  return (
120
118
  self.demanded_buildings,
121
119
  self.services,
@@ -1 +0,0 @@
1
- VERSION = "0.2.3"
File without changes
File without changes