Fast object-level (polygon) metrics for geospatial ML: precision, recall, F1, IoU, mAP, shape stats.
Project description
polymetrics
Fast object-level (polygon) accuracy metrics for geospatial ML. Compare two GeoJSONs and get precision, recall, F1, IoU, mAP, and polygon-shape statistics in one call.
uvx polymetrics truth.geojson pred.geojson
from polymetrics import evaluate
result = evaluate("truth.geojson", "pred.geojson", iou_threshold=0.5)
print(result.precision, result.recall, result.f1, result.mean_iou)
result.to_geojson("annotated.geojson")
What it computes
| Metric | Definition |
|---|---|
precision, recall, f1 |
Standard object-level scores after one-to-one Hungarian matching on IoU |
mean_iou |
Mean IoU across matched (TP) pairs |
map_50 |
Mean Average Precision at IoU=0.5, 101-point AP integration (COCO-style) |
map_50_95 |
Mean of mAP at IoU thresholds 0.5, 0.55, ..., 0.95 |
avg_vertices |
Mean exterior vertex count across predicted polygons |
orthogonality |
Mean fraction of edges within 5° of each polygon's MBR dominant axis |
How it differs from pixel metrics
Pixel IoU pools every pixel and asks "what fraction did you get right?". Object IoU asks "did you find each building, and how well-shaped is each one?" which is what users actually see on a map. Both are useful for different reasons; this library only does object-level.
CRS handling
Inputs are always reprojected to EPSG:3857 before any geometric computation. If the prediction and truth GeoJSONs declare different source CRSs, a warning is emitted and both are projected. A missing CRS is treated as EPSG:4326 (the GeoJSON 2008 default).
Matching algorithm
Hungarian bipartite assignment (scipy.optimize.linear_sum_assignment) on a -IoU cost matrix, with gdf.sindex (STRtree) pruning to skip non-overlapping pairs. Each prediction matches at most one truth; pairs below iou_threshold are dropped (the prediction becomes FP, the truth FN).
mAP
mAP requires each prediction feature to carry a score or confidence property in [0, 1]. If neither is present, mAP is reported as null and a warning is emitted; the other metrics still compute.
Install
uv pip install polymetrics
CLI
polymetrics truth.geojson pred.geojson [options]
positional arguments:
truth ground-truth GeoJSON
pred prediction GeoJSON
options:
--iou FLOAT IoU threshold for TP (default: 0.5)
--no-map skip mAP computation
--out PATH write annotated GeoJSON (TP/FP/FN per feature)
--json emit metrics as JSON on stdout
License
Apache-2.0.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file polymetrics-0.2.2.tar.gz.
File metadata
- Download URL: polymetrics-0.2.2.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4823c4de414da1861a4bbb2b128c4c011dc2e8745d6665944bd90865691457f3
|
|
| MD5 |
ca2b186e76585baab85920887142748c
|
|
| BLAKE2b-256 |
53c6c9ad7ad7169082ec0a58c4b3a0ddf74679bde1032cc9568bbf13fd91a565
|
File details
Details for the file polymetrics-0.2.2-py3-none-any.whl.
File metadata
- Download URL: polymetrics-0.2.2-py3-none-any.whl
- Upload date:
- Size: 11.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.17 {"installer":{"name":"uv","version":"0.11.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24e269a2c30cdb18fa23caaeac247ab1192242ff05058d793ef5bf0b5d7b44e8
|
|
| MD5 |
43ec58dd2e9b1065dceaa6511f278701
|
|
| BLAKE2b-256 |
4f23f379e81eebb5901f9849f9d98fd12a7eb20358d732f89224f82d55f19efb
|