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
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`.
+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.