huff 1.3.4__tar.gz → 1.3.5__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.
Files changed (30) hide show
  1. {huff-1.3.4 → huff-1.3.5}/PKG-INFO +1 -1
  2. {huff-1.3.4 → huff-1.3.5}/huff/gistools.py +2 -2
  3. {huff-1.3.4 → huff-1.3.5}/huff/models.py +6 -2
  4. {huff-1.3.4 → huff-1.3.5}/huff/ors.py +2 -2
  5. {huff-1.3.4 → huff-1.3.5}/huff/osm.py +2 -2
  6. {huff-1.3.4 → huff-1.3.5}/huff/tests/tests_huff.py +2 -2
  7. {huff-1.3.4 → huff-1.3.5}/huff.egg-info/PKG-INFO +1 -1
  8. {huff-1.3.4 → huff-1.3.5}/setup.py +1 -1
  9. {huff-1.3.4 → huff-1.3.5}/MANIFEST.in +0 -0
  10. {huff-1.3.4 → huff-1.3.5}/README.md +0 -0
  11. {huff-1.3.4 → huff-1.3.5}/huff/__init__.py +0 -0
  12. {huff-1.3.4 → huff-1.3.5}/huff/tests/__init__.py +0 -0
  13. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach.cpg +0 -0
  14. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach.dbf +0 -0
  15. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach.prj +0 -0
  16. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach.qmd +0 -0
  17. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach.shp +0 -0
  18. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach.shx +0 -0
  19. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach_supermarkets.cpg +0 -0
  20. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach_supermarkets.dbf +0 -0
  21. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach_supermarkets.prj +0 -0
  22. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach_supermarkets.qmd +0 -0
  23. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach_supermarkets.shp +0 -0
  24. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Haslach_supermarkets.shx +0 -0
  25. {huff-1.3.4 → huff-1.3.5}/huff/tests/data/Wieland2015.xlsx +0 -0
  26. {huff-1.3.4 → huff-1.3.5}/huff.egg-info/SOURCES.txt +0 -0
  27. {huff-1.3.4 → huff-1.3.5}/huff.egg-info/dependency_links.txt +0 -0
  28. {huff-1.3.4 → huff-1.3.5}/huff.egg-info/requires.txt +0 -0
  29. {huff-1.3.4 → huff-1.3.5}/huff.egg-info/top_level.txt +0 -0
  30. {huff-1.3.4 → huff-1.3.5}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huff
3
- Version: 1.3.4
3
+ Version: 1.3.5
4
4
  Summary: huff: Huff Model Market Area Analysis
5
5
  Author: Thomas Wieland
6
6
  Author-email: geowieland@googlemail.com
@@ -4,8 +4,8 @@
4
4
  # Author: Thomas Wieland
5
5
  # ORCID: 0000-0001-5168-9846
6
6
  # mail: geowieland@googlemail.com
7
- # Version: 1.3.4
8
- # Last update: 2025-06-02 17:17
7
+ # Version: 1.3.5
8
+ # Last update: 2025-06-03 17:24
9
9
  # Copyright (c) 2025 Thomas Wieland
10
10
  #-----------------------------------------------------------------------
11
11
 
@@ -4,8 +4,8 @@
4
4
  # Author: Thomas Wieland
5
5
  # ORCID: 0000-0001-5168-9846
6
6
  # mail: geowieland@googlemail.com
7
- # Version: 1.3.4
8
- # Last update: 2025-06-02 17:17
7
+ # Version: 1.3.5
8
+ # Last update: 2025-06-03 17:23
9
9
  # Copyright (c) 2025 Thomas Wieland
10
10
  #-----------------------------------------------------------------------
11
11
 
@@ -1348,6 +1348,10 @@ def create_interaction_matrix(
1348
1348
 
1349
1349
  customer_origins_geodata_gpd = pd.DataFrame(customer_origins.get_geodata_gpd())
1350
1350
  customer_origins_geodata_gpd_original = pd.DataFrame(customer_origins.get_geodata_gpd_original())
1351
+
1352
+ customer_origins_geodata_gpd[customer_origins_unique_id] = customer_origins_geodata_gpd[customer_origins_unique_id].astype(str)
1353
+ customer_origins_geodata_gpd_original[customer_origins_unique_id] = customer_origins_geodata_gpd_original[customer_origins_unique_id].astype(str)
1354
+
1351
1355
  customer_origins_data = pd.merge(
1352
1356
  customer_origins_geodata_gpd,
1353
1357
  customer_origins_geodata_gpd_original[[customer_origins_unique_id, customer_origins_marketsize]],
@@ -4,8 +4,8 @@
4
4
  # Author: Thomas Wieland
5
5
  # ORCID: 0000-0001-5168-9846
6
6
  # mail: geowieland@googlemail.com
7
- # Version: 1.3.4
8
- # Last update: 2025-06-01 17:18
7
+ # Version: 1.3.5
8
+ # Last update: 2025-06-03 17:24
9
9
  # Copyright (c) 2025 Thomas Wieland
10
10
  #-----------------------------------------------------------------------
11
11
 
@@ -4,8 +4,8 @@
4
4
  # Author: Thomas Wieland
5
5
  # ORCID: 0000-0001-5168-9846
6
6
  # mail: geowieland@googlemail.com
7
- # Version: 1.3.4
8
- # Last update: 2025-06-02 17:18
7
+ # Version: 1.3.5
8
+ # Last update: 2025-06-03 17:24
9
9
  # Copyright (c) 2025 Thomas Wieland
10
10
  #-----------------------------------------------------------------------
11
11
 
@@ -4,8 +4,8 @@
4
4
  # Author: Thomas Wieland
5
5
  # ORCID: 0000-0001-5168-9846
6
6
  # mail: geowieland@googlemail.com
7
- # Version: 1.3.4
8
- # Last update: 2025-06-02 17:17
7
+ # Version: 1.3.5
8
+ # Last update: 2025-06-03 17:24
9
9
  # Copyright (c) 2025 Thomas Wieland
10
10
  #-----------------------------------------------------------------------
11
11
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: huff
3
- Version: 1.3.4
3
+ Version: 1.3.5
4
4
  Summary: huff: Huff Model Market Area Analysis
5
5
  Author: Thomas Wieland
6
6
  Author-email: geowieland@googlemail.com
@@ -7,7 +7,7 @@ def read_README():
7
7
 
8
8
  setup(
9
9
  name='huff',
10
- version='1.3.4',
10
+ version='1.3.5',
11
11
  description='huff: Huff Model Market Area Analysis',
12
12
  packages=find_packages(include=["huff", "huff.tests"]),
13
13
  include_package_data=True,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes