Document that spatial queries on MultiPolygon keep also the components outside the queried region

Ouverte
#1,255 0 commentaires 0 réactions 0 personnes assignées Voir sur GitHub

Personne n'a encore pris cette issue.

Évaluation

Difficulté
3/5
Temps estimé
1-2 jours
Accessibilité débutants
72/100
Type d'issue
Documentation
Clarté
Plutôt claire
Activité
Active
Stack technique
python
Domaine
documentation

Piste de recherche

Start by running the attached self-contained repro with uv run repro.py, then locate the polygon_query and bounding_box_query docstrings and the query section of the documentation. Document whole-shape return behavior, including MultiPolygon components outside the region, and explain the clip=True behavior; consider whether bounding-box queries need equivalent support.】【。

Rédigé par le modèle d'indexation à partir du texte de l'issue.

Description

docs 📜 element: shapes ▲ method: query priority: low

Bug report from @claude, bug discovered and triaged by @LucaMarconato.

Spatial queries on MultiPolygon shapes return the whole geometry, including the components that lie entirely outside the queried region.

MWE

blobs()["blobs_multipolygons"] holds 2 MultiPolygons, each made of 2 disjoint components. Querying a region that only contains the first component of each returns both MultiPolygons unchanged:

# /// script
# requires-python = ">=3.12"
# dependencies = [
#     "spatialdata @ git+https://github.com/scverse/spatialdata.git@65dc73e",
#     "spatialdata-plot",
#     "matplotlib",
# ]
# ///
"""Spatial queries on MultiPolygon keep also the components that lie fully outside the queried region.

`blobs()["blobs_multipolygons"]` contains 2 MultiPolygons, each made of 2 disjoint Polygon components.
Querying a region that only contains the *first* component of each MultiPolygon returns the MultiPolygons
unchanged: the second component - which has zero overlap with the query region - is still there.

`polygon_query(..., clip=True)` does drop them, but `bounding_box_query()` has no `clip` argument at all,
so there is no way to get the same result from a bounding-box query.
"""

import warnings

import matplotlib.pyplot as plt
import spatialdata_plot  # noqa: F401  (registers the .pl accessor)
from matplotlib.patches import Rectangle
from shapely.geometry import box

from spatialdata import SpatialData, bounding_box_query, polygon_query
from spatialdata.datasets import blobs

warnings.simplefilter("ignore")

# ---------------------------------------------------------------- data + query
sdata = blobs()
multipolygons = sdata["blobs_multipolygons"]
XMIN, YMIN, XMAX, YMAX = 285.0, 190.0, 345.0, 262.0
query_region = box(XMIN, YMIN, XMAX, YMAX)

no_clip = polygon_query(multipolygons, polygon=query_region, target_coordinate_system="global", clip=False)
clipped = polygon_query(multipolygons, polygon=query_region, target_coordinate_system="global", clip=True)
bbox = bounding_box_query(
    multipolygons,
    axes=("x", "y"),
    min_coordinate=[XMIN, YMIN],
    max_coordinate=[XMAX, YMAX],
    target_coordinate_system="global",
)  # no `clip` argument available here


def describe(name, gdf):
    print(f"{name}:")
    n_outside = 0
    for idx, geom in zip(gdf.index, gdf.geometry, strict=True):
        parts = list(geom.geoms) if geom.geom_type == "MultiPolygon" else [geom]
        outside = [p for p in parts if not p.intersects(query_region)]
        n_outside += len(outside)
        print(
            f"  index {idx}: {geom.geom_type} with {len(parts)} component(s), "
            f"{len(outside)} of which do NOT intersect the query region"
        )
    return n_outside


print(f"query region: box({XMIN}, {YMIN}, {XMAX}, {YMAX})\n")
describe("original", multipolygons)
n_outside = describe("polygon_query(..., clip=False)  <-- default", no_clip)
describe("polygon_query(..., clip=True)", clipped)
n_outside += describe("bounding_box_query(...)         <-- no `clip` argument exists", bbox)
print(
    "\nexpected: the MultiPolygon components that do not intersect the query region are dropped,\n"
    "or at least this behaviour (and the `clip=True` workaround) is documented\n"
    f"VERDICT: {'BUG REPRODUCED' if n_outside else 'NOT REPRODUCED'}"
)

# ------------------------------------------------------------------- plotting
panels = {
    "original": multipolygons,
    "polygon_query(clip=False), default\nand bounding_box_query():\ncomponents outside the box are kept": no_clip,
    "polygon_query(clip=True):\ncomponents outside the box are dropped": clipped,
}
fig, axes = plt.subplots(1, 3, figsize=(15, 5.5))
for ax, (title, shapes) in zip(axes, panels.items(), strict=True):
    SpatialData(images={"blobs_image": sdata["blobs_image"]}, shapes={"shapes": shapes}).pl.render_images(
        "blobs_image"
    ).pl.render_shapes("shapes", fill_alpha=0.6, outline_alpha=1.0, outline_color="white").pl.show(ax=ax, title=title)
    ax.add_patch(
        Rectangle((XMIN, YMIN), XMAX - XMIN, YMAX - YMIN, fill=False, edgecolor="red", lw=2, ls="--", zorder=10)
    )
fig.tight_layout()
fig.savefig("multipolygon_query_keeps_outside_components.png", dpi=120)
print("figure written to multipolygon_query_keeps_outside_components.png")

Full self-contained repro (PEP 723, uv run repro.py) attached; it also renders the figure below with spatialdata-plot.

The left and middle panels are identical: the default query returns everything. Red dashed box = query region.

Why this is confusing

For a single Polygon that only partially overlaps the region, returning the whole geometry is the documented, intended behaviour ("keep the shape if it intersects"). For a MultiPolygon the same rule silently keeps components that have zero overlap with the query region, which is much more surprising: the returned element can extend arbitrarily far outside the queried region.

clip=True gives the expected result, but:

  • it is not obvious that this is the knob to reach for — the parameter reads as "trim the boundary", not "drop the parts that are not in the region";
  • it is only available in polygon_query; bounding_box_query has no clip argument, so there is no way to get the same result from a bounding-box query;
  • as a side effect it changes the geometry type (MultiPolygon -> Polygon) when only one component survives.

Suggestion

Mainly a documentation issue: document explicitly, in the polygon_query/bounding_box_query docstrings and in the query section of the docs, that shapes are returned whole and that for MultiPolygon this includes components lying fully outside the queried region, and point to clip=True as the way to get geometrically cropped output.

Additionally, consider adding clip to bounding_box_query (it could simply forward to the polygon-query path with a box), so that the workaround is available for both query types.

Environment

uv run repro.py with the PEP 723 metadata in the script (fresh, isolated environment; spatialdata built from main @ 65dc73e; Python 3.13, latest releases of the dependencies at run time). macOS (arm64).


Issue generated by Claude.

Langage dominant
Python
Étoiles
394
Forks
95
Merge moyen
3 j 9 h
PR mergées (30 j)
5

Guide de contribution

Ouvrir le guide de contribution

Par où commencer

  1. Lisez l'issue en entier, puis le guide de contribution du projet.
  2. Signalez en commentaire que vous la prenez — cela évite que deux personnes fassent le même travail.
  3. Forkez le dépôt et travaillez sur une branche.
  4. Ouvrez une pull request qui référence le numéro de l'issue.

Autres issues de scverse/spatialdata

Toutes les issues de scverse/spatialdata

Issues similaires

Plus d'issues Python

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.