We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3d7e3e commit d32fccfCopy full SHA for d32fccf
tests/test_drivers.py
@@ -301,3 +301,12 @@ def test_geometry(testdata, dataset):
301
scene = pyroSAR.identify(testdata[dataset])
302
with scene.geometry() as geom:
303
assert isinstance(geom, Vector)
304
+
305
306
+def test_geo_grid(tmpdir, testdata):
307
+ scene = pyroSAR.identify(testdata['s1'])
308
+ with scene.geo_grid() as geom:
309
+ assert isinstance(geom, Vector)
310
+ out = tmpdir / "geogrid.gpkg"
311
+ scene.geo_grid(outname=str(out))
312
+ assert out.exists()
0 commit comments