ssb-sgis 1.3.0__py3-none-any.whl → 1.3.1__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.
- sgis/io/dapla_functions.py +1 -1
- sgis/maps/norge_i_bilder.json +9518 -656
- sgis/maps/wms.py +9 -8
- {ssb_sgis-1.3.0.dist-info → ssb_sgis-1.3.1.dist-info}/METADATA +1 -1
- {ssb_sgis-1.3.0.dist-info → ssb_sgis-1.3.1.dist-info}/RECORD +7 -7
- {ssb_sgis-1.3.0.dist-info → ssb_sgis-1.3.1.dist-info}/LICENSE +0 -0
- {ssb_sgis-1.3.0.dist-info → ssb_sgis-1.3.1.dist-info}/WHEEL +0 -0
sgis/io/dapla_functions.py
CHANGED
|
@@ -623,7 +623,7 @@ def _write_partitioned_geoparquet(
|
|
|
623
623
|
if basename_template is None:
|
|
624
624
|
this_basename = (uuid.uuid4().hex + "-{i}.parquet").replace("-{i}", "0")
|
|
625
625
|
else:
|
|
626
|
-
this_basename = basename_template
|
|
626
|
+
this_basename = basename_template.replace("-{i}", "0")
|
|
627
627
|
for i, sibling_path in enumerate(sorted(glob_func(str(Path(path) / "**")))):
|
|
628
628
|
if paths_are_equal(sibling_path, path):
|
|
629
629
|
continue
|