Initial public release
GeoIntel release gates / Compile, test, contracts and builds (push) Successful in 1m49s
GeoIntel release gates / Python and npm vulnerability policy (push) Successful in 21s
GeoIntel release gates / Production AI image, SBOM and container scan (push) Successful in 5m39s
GeoIntel release gates / Deploy exact gated revision to Unraid (push) Failing after 58m43s

This commit is contained in:
Jens
2026-08-31 21:56:53 +02:00
commit faeb58ef6d
1386 changed files with 263203 additions and 0 deletions
View File
+11
View File
@@ -0,0 +1,11 @@
# Test Fixtures
Fixtures should be tiny, deterministic and safe to commit.
Planned fixtures:
- geospatial/project_area.geojson
- vectors/reference_buildings.geojson
- vectors/predicted_buildings.geojson
- rasters/tiny_raster.tif or generated raster fixture in tests
See `docs/FIXTURE_STRATEGY.md`.
+9
View File
@@ -0,0 +1,9 @@
[
{
"class_id": 2,
"x_center": 0.95,
"y_center": 0.5,
"width": 0.2,
"height": -0.1
}
]
+9
View File
@@ -0,0 +1,9 @@
[
{
"class_id": 0,
"x_center": 0.5,
"y_center": 0.5,
"width": 0.2,
"height": 0.3
}
]
@@ -0,0 +1,24 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"native_id": "GRB-GBG-001",
"feature_status": "active"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[4.8470, 51.1550],
[4.8480, 51.1550],
[4.8480, 51.1560],
[4.8470, 51.1560],
[4.8470, 51.1550]
]
]
}
}
]
}
@@ -0,0 +1,24 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"native_id": "GRB-GBG-002",
"feature_status": "active"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[193277.5, 205708.3],
[193377.5, 205708.3],
[193377.5, 205808.3],
[193277.5, 205808.3],
[193277.5, 205708.3]
]
]
}
}
]
}
+3
View File
@@ -0,0 +1,3 @@
# tests/fixtures/geojson
Reserved for GeoIntel development assets. Do not commit large real datasets unless explicitly approved.
+13
View File
@@ -0,0 +1,13 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {"name": "Demo AOI"},
"geometry": {
"type": "Polygon",
"coordinates": [[[5.0,51.0],[5.01,51.0],[5.01,51.01],[5.0,51.01],[5.0,51.0]]]
}
}
]
}
+7
View File
@@ -0,0 +1,7 @@
{
"type": "FeatureCollection",
"features": [
{"type":"Feature","properties":{"id":"det_1","class":"building","confidence":0.92},"geometry":{"type":"Polygon","coordinates":[[[5.0011,51.0011],[5.0031,51.0011],[5.0031,51.0031],[5.0011,51.0031],[5.0011,51.0011]]]}},
{"type":"Feature","properties":{"id":"det_fp","class":"building","confidence":0.61},"geometry":{"type":"Polygon","coordinates":[[[5.004,51.004],[5.005,51.004],[5.005,51.005],[5.004,51.005],[5.004,51.004]]]}}
]
}
+7
View File
@@ -0,0 +1,7 @@
{
"type": "FeatureCollection",
"features": [
{"type":"Feature","properties":{"id":"ref_1","class":"building"},"geometry":{"type":"Polygon","coordinates":[[[5.001,51.001],[5.003,51.001],[5.003,51.003],[5.001,51.003],[5.001,51.001]]]}},
{"type":"Feature","properties":{"id":"ref_2","class":"building"},"geometry":{"type":"Polygon","coordinates":[[[5.006,51.006],[5.008,51.006],[5.008,51.008],[5.006,51.008],[5.006,51.006]]]}}
]
}
View File
View File
+3
View File
@@ -0,0 +1,3 @@
# tests/fixtures/rasters
Reserved for GeoIntel development assets. Do not commit large real datasets unless explicitly approved.
View File
+3
View File
@@ -0,0 +1,3 @@
# tests/fixtures/vectors
Reserved for GeoIntel development assets. Do not commit large real datasets unless explicitly approved.