ssb-sgis 1.1.15__py3-none-any.whl → 1.1.16__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/geopandas_tools/cleaning.py +7 -2
- sgis/maps/maps.py +1 -1
- {ssb_sgis-1.1.15.dist-info → ssb_sgis-1.1.16.dist-info}/METADATA +1 -1
- {ssb_sgis-1.1.15.dist-info → ssb_sgis-1.1.16.dist-info}/RECORD +6 -6
- {ssb_sgis-1.1.15.dist-info → ssb_sgis-1.1.16.dist-info}/LICENSE +0 -0
- {ssb_sgis-1.1.15.dist-info → ssb_sgis-1.1.16.dist-info}/WHEEL +0 -0
sgis/geopandas_tools/cleaning.py
CHANGED
|
@@ -480,7 +480,9 @@ def _dissolve_thick_double_and_update(gdf, double, thin_double):
|
|
|
480
480
|
.pipe(update_geometries, geom_type="polygon")
|
|
481
481
|
)
|
|
482
482
|
return (
|
|
483
|
-
clean_overlay(gdf, large, how="update").pipe(
|
|
483
|
+
clean_overlay(gdf, large, how="update", geom_type="polygon").pipe(
|
|
484
|
+
sort_small_first
|
|
485
|
+
)
|
|
484
486
|
# .sort_values("_poly_idx")
|
|
485
487
|
.pipe(update_geometries, geom_type="polygon")
|
|
486
488
|
)
|
|
@@ -601,6 +603,7 @@ def split_by_neighbors(df, split_by, tolerance, grid_size=None) -> GeoDataFrame:
|
|
|
601
603
|
buff(df, tolerance),
|
|
602
604
|
how="identity",
|
|
603
605
|
grid_size=grid_size,
|
|
606
|
+
geom_type="polygon",
|
|
604
607
|
)
|
|
605
608
|
.pipe(get_line_segments)
|
|
606
609
|
.reset_index(drop=True)
|
|
@@ -621,7 +624,9 @@ def split_by_neighbors(df, split_by, tolerance, grid_size=None) -> GeoDataFrame:
|
|
|
621
624
|
|
|
622
625
|
buffered = buff(extended_lines, tolerance, single_sided=True)
|
|
623
626
|
|
|
624
|
-
return clean_overlay(
|
|
627
|
+
return clean_overlay(
|
|
628
|
+
df, buffered, how="identity", geom_type="polygon", grid_size=grid_size
|
|
629
|
+
)
|
|
625
630
|
|
|
626
631
|
|
|
627
632
|
def extend_lines(arr1, arr2, distance) -> NDArray[LineString]:
|
sgis/maps/maps.py
CHANGED
|
@@ -6,7 +6,7 @@ sgis/geopandas_tools/__init__.py,sha256=bo8lFMcltOz7TtWAi52_ekR2gd3mjfBfKeMDV5zu
|
|
|
6
6
|
sgis/geopandas_tools/bounds.py,sha256=YJyF0gp78hFAjLLZmDquRKCBAtbt7QouG3snTcJeNQs,23822
|
|
7
7
|
sgis/geopandas_tools/buffer_dissolve_explode.py,sha256=t9GJqRMDsHEU74RIlqeMr4QBgbTK0hYlXL4af1RKIks,19955
|
|
8
8
|
sgis/geopandas_tools/centerlines.py,sha256=Q65Sx01SeAlulBEd9oaZkB2maBBNdLcJwAbTILg4SPU,11848
|
|
9
|
-
sgis/geopandas_tools/cleaning.py,sha256=
|
|
9
|
+
sgis/geopandas_tools/cleaning.py,sha256=PkAVVZ84ahek8_uVlTRtCO8nCWO6DdGltWLTmPOsvxM,24426
|
|
10
10
|
sgis/geopandas_tools/conversion.py,sha256=o3QJZLfaqqpJNdWWNKfQn_dS77uJxxRxWZxhf18vPXs,25505
|
|
11
11
|
sgis/geopandas_tools/duplicates.py,sha256=p9OCYWtwkWE7i-kZX_dRqAiczsUoWEWl5I8GeYIjQOM,14968
|
|
12
12
|
sgis/geopandas_tools/general.py,sha256=UPtmgEMhTZw-qMiCCjeTtyBlJWoVE96SSanufPK8MLs,39976
|
|
@@ -30,7 +30,7 @@ sgis/maps/explore.py,sha256=0QDPaj5YU2Jps5iujuHu-vk_R9mFh_aOhbN1eU-fxcI,47898
|
|
|
30
30
|
sgis/maps/httpserver.py,sha256=eCDoB9x74kSLiGEj2X3O91t3oscY_ia17UNuaaJ6tCc,2472
|
|
31
31
|
sgis/maps/legend.py,sha256=lVRVCkhPmJRjGK23obFJZAO3qp6du1LYnobkkN7DPkc,26279
|
|
32
32
|
sgis/maps/map.py,sha256=lwQUJvK3I9dPNSxPeRty9ICodz_GXQBN1OHhghI7IsE,30439
|
|
33
|
-
sgis/maps/maps.py,sha256=
|
|
33
|
+
sgis/maps/maps.py,sha256=csPXJa9R7zwlDJ0lz8qW91l0uRxjo1m2smoU8IPtgLA,23091
|
|
34
34
|
sgis/maps/norge_i_bilder.json,sha256=W_mFfte3DxugWbEudZ5fadZ2JeFYb0hyab2Quf4oJME,481311
|
|
35
35
|
sgis/maps/thematicmap.py,sha256=w6q4_gIr8BubQgsPJkc6WXk-tmplDLGcKyjphhFp7ng,21873
|
|
36
36
|
sgis/maps/tilesources.py,sha256=F4mFHxPwkiPJdVKzNkScTX6xbJAMIUtlTq4mQ83oguw,1746
|
|
@@ -59,7 +59,7 @@ sgis/raster/indices.py,sha256=-J1HYmnT240iozvgagvyis6K0_GHZHRuUrPOgyoeIrY,223
|
|
|
59
59
|
sgis/raster/regex.py,sha256=kYhVpRYzoXutx1dSYmqMoselWXww7MMEsTPmLZwHjbM,3759
|
|
60
60
|
sgis/raster/sentinel_config.py,sha256=nySDqn2R8M6W8jguoBeSAK_zzbAsqmaI59i32446FwY,1268
|
|
61
61
|
sgis/raster/zonal.py,sha256=D4Gyptw-yOLTCO41peIuYbY-DANsJCG19xXDlf1QAz4,2299
|
|
62
|
-
ssb_sgis-1.1.
|
|
63
|
-
ssb_sgis-1.1.
|
|
64
|
-
ssb_sgis-1.1.
|
|
65
|
-
ssb_sgis-1.1.
|
|
62
|
+
ssb_sgis-1.1.16.dist-info/LICENSE,sha256=np3IfD5m0ZUofn_kVzDZqliozuiO6wrktw3LRPjyEiI,1073
|
|
63
|
+
ssb_sgis-1.1.16.dist-info/METADATA,sha256=Ct_hJHlYMmi8paIDe0BsB5Ev1Lrj2GdXYsbAG-i1Y6g,11741
|
|
64
|
+
ssb_sgis-1.1.16.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
65
|
+
ssb_sgis-1.1.16.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|