Initial GeoIntel V1 foundation
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-06-16 23:36:32 +02:00
commit 6ea3586a3e
605 changed files with 45284 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
# Demo — Geel Building Detection
Purpose:
Demonstrate the core GeoAI workflow: select area, load imagery/reference data, detect buildings, compare with GRB/fixture reference, export GeoJSON.
V1 can use small fixtures instead of large real imagery.
+39
View File
@@ -0,0 +1,39 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"id": "area_geel_center",
"name": "Geel Centrum Demo"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
4.98,
51.16
],
[
5.0,
51.16
],
[
5.0,
51.18
],
[
4.98,
51.18
],
[
4.98,
51.16
]
]
]
}
}
]
}
+113
View File
@@ -0,0 +1,113 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"id": "det_bld_1",
"class": "building",
"confidence": 0.92,
"model_id": "demo-yolo-buildings-v1"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
4.98505,
51.16505
],
[
4.9860500000000005,
51.16505
],
[
4.9860500000000005,
51.16605
],
[
4.98505,
51.16605
],
[
4.98505,
51.16505
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "det_bld_2",
"class": "building",
"confidence": 0.88,
"model_id": "demo-yolo-buildings-v1"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
4.99005,
51.16605
],
[
4.99105,
51.16605
],
[
4.99105,
51.167049999999996
],
[
4.99005,
51.167049999999996
],
[
4.99005,
51.16605
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "det_bld_3",
"class": "building",
"confidence": 0.61,
"model_id": "demo-yolo-buildings-v1"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
4.997,
51.172
],
[
4.998,
51.172
],
[
4.998,
51.172999999999995
],
[
4.997,
51.172999999999995
],
[
4.997,
51.172
]
]
]
}
}
]
}
+9
View File
@@ -0,0 +1,9 @@
{
"iou_threshold": 0.5,
"true_positive": 2,
"false_positive": 1,
"false_negative": 1,
"precision": 0.6667,
"recall": 0.6667,
"f1": 0.6667
}
+107
View File
@@ -0,0 +1,107 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"id": "ref_bld_1",
"class": "building"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
4.985,
51.165
],
[
4.986000000000001,
51.165
],
[
4.986000000000001,
51.166
],
[
4.985,
51.166
],
[
4.985,
51.165
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "ref_bld_2",
"class": "building"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
4.99,
51.166
],
[
4.9910000000000005,
51.166
],
[
4.9910000000000005,
51.166999999999994
],
[
4.99,
51.166999999999994
],
[
4.99,
51.166
]
]
]
}
},
{
"type": "Feature",
"properties": {
"id": "ref_bld_3",
"class": "building"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
4.995,
51.17
],
[
4.996,
51.17
],
[
4.996,
51.171
],
[
4.995,
51.171
],
[
4.995,
51.17
]
]
]
}
}
]
}