Initial GeoIntel V1 foundation
This commit is contained in:
Vendored
Vendored
+11
@@ -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`.
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
# tests/fixtures/geojson
|
||||
|
||||
Reserved for GeoIntel development assets. Do not commit large real datasets unless explicitly approved.
|
||||
+13
@@ -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]]]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -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]]]}}
|
||||
]
|
||||
}
|
||||
@@ -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]]]}}
|
||||
]
|
||||
}
|
||||
Vendored
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
# tests/fixtures/rasters
|
||||
|
||||
Reserved for GeoIntel development assets. Do not commit large real datasets unless explicitly approved.
|
||||
Vendored
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
# tests/fixtures/vectors
|
||||
|
||||
Reserved for GeoIntel development assets. Do not commit large real datasets unless explicitly approved.
|
||||
Reference in New Issue
Block a user