giga-spatial 0.6.6__py3-none-any.whl → 0.6.7__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.
- {giga_spatial-0.6.6.dist-info → giga_spatial-0.6.7.dist-info}/METADATA +1 -1
- {giga_spatial-0.6.6.dist-info → giga_spatial-0.6.7.dist-info}/RECORD +7 -7
- gigaspatial/__init__.py +1 -1
- gigaspatial/handlers/worldpop.py +1 -1
- {giga_spatial-0.6.6.dist-info → giga_spatial-0.6.7.dist-info}/WHEEL +0 -0
- {giga_spatial-0.6.6.dist-info → giga_spatial-0.6.7.dist-info}/licenses/LICENSE +0 -0
- {giga_spatial-0.6.6.dist-info → giga_spatial-0.6.7.dist-info}/top_level.txt +0 -0
@@ -1,5 +1,5 @@
|
|
1
|
-
giga_spatial-0.6.
|
2
|
-
gigaspatial/__init__.py,sha256=
|
1
|
+
giga_spatial-0.6.7.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
2
|
+
gigaspatial/__init__.py,sha256=F6dMrYXtnIxoVQIhQnq6i1IIuwiHqeZxZMHThUjr2vM,22
|
3
3
|
gigaspatial/config.py,sha256=pLbxGc08OHT2IfTBzZVuIJTPR2vvg3KTFfvciOtRswk,9304
|
4
4
|
gigaspatial/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
gigaspatial/core/io/__init__.py,sha256=stlpgEeHf5KIb2ZW8yEbdJK5iq6n_wX4DPmKyR9PK-w,317
|
@@ -37,14 +37,14 @@ gigaspatial/handlers/osm.py,sha256=sLNMkOVh1v50jrWw7Z0-HILY5QTQjgKCHCeAfXj5jA8,1
|
|
37
37
|
gigaspatial/handlers/overture.py,sha256=lKeNw00v5Qia7LdWORuYihnlKEqxE9m38tdeRrvag9k,4218
|
38
38
|
gigaspatial/handlers/rwi.py,sha256=eAaplDysVeBhghJusYUKZYbKL5hW-klWvi8pWhILQkY,4962
|
39
39
|
gigaspatial/handlers/unicef_georepo.py,sha256=ODYNvkU_UKgOHXT--0MqmJ4Uk6U1_mp9xgehbTzKpX8,31924
|
40
|
-
gigaspatial/handlers/worldpop.py,sha256=
|
40
|
+
gigaspatial/handlers/worldpop.py,sha256=jV166EP02Xdj8jiT8aQi4sexds8Qd3KRGHXqq70_Sdk,30161
|
41
41
|
gigaspatial/processing/__init__.py,sha256=QDVL-QbLCrIb19lrajP7LrHNdGdnsLeGcvAs_jQpdRM,183
|
42
42
|
gigaspatial/processing/algorithms.py,sha256=6fBCwbZrI_ISWJ7UpkH6moq1vw-7dBy14yXSLHZprqY,6591
|
43
43
|
gigaspatial/processing/geo.py,sha256=8kD7-LQdGzKVfuZDWr3zK5uQhPzgxbZ3JBPosLRBJ5M,41390
|
44
44
|
gigaspatial/processing/sat_images.py,sha256=YUbH5MFNzl6NX49Obk14WaFcr1s3SyGJIOk-kRpbBNg,1429
|
45
45
|
gigaspatial/processing/tif_processor.py,sha256=QLln9D-_zBhdYQL9NAL_bmo0bmmxE3sxDUQEglYQK94,27490
|
46
46
|
gigaspatial/processing/utils.py,sha256=HC85vGKQakxlkoQAkZmeAXWHsenAwTIRn7jPKUA7x20,1500
|
47
|
-
giga_spatial-0.6.
|
48
|
-
giga_spatial-0.6.
|
49
|
-
giga_spatial-0.6.
|
50
|
-
giga_spatial-0.6.
|
47
|
+
giga_spatial-0.6.7.dist-info/METADATA,sha256=Ra3gVT9Y_Zncp8qCLzQYnMLKF_Ff_MSShPKUsUtGSUE,7537
|
48
|
+
giga_spatial-0.6.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
49
|
+
giga_spatial-0.6.7.dist-info/top_level.txt,sha256=LZsccgw6H4zXT7m6Y4XChm-Y5LjHAwZ2hkGN_B3ExmI,12
|
50
|
+
giga_spatial-0.6.7.dist-info/RECORD,,
|
gigaspatial/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.6.
|
1
|
+
__version__ = "0.6.7"
|
gigaspatial/handlers/worldpop.py
CHANGED
@@ -611,7 +611,7 @@ class WPPopulationDownloader(BaseHandlerDownloader):
|
|
611
611
|
total_size = int(response.headers.get("content-length", 0))
|
612
612
|
file_path = self.config.get_data_unit_path(url)
|
613
613
|
|
614
|
-
with self.data_store.open(file_path, "wb") as file:
|
614
|
+
with self.data_store.open(str(file_path), "wb") as file:
|
615
615
|
with tqdm(
|
616
616
|
total=total_size,
|
617
617
|
unit="B",
|
File without changes
|
File without changes
|
File without changes
|