We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb005df commit 3c8bcdfCopy full SHA for 3c8bcdf
tests/test_cli.py
@@ -8,6 +8,7 @@
8
9
TEST_DATA = Path("./tests/data")
10
MUNCIE_G05 = TEST_DATA / "ras/Muncie.g05.hdf"
11
+BALD_EAGLE_P18 = TEST_DATA / "ras/BaldEagleDamBrk.p18.hdf"
12
13
14
def test_docstring_to_help():
@@ -106,3 +107,10 @@ def test_export(tmp_path: Path):
106
107
gdf = gpd.read_parquet(test_parquet_path)
108
assert len(gdf) == 5790
109
assert gdf.crs == CRS.from_epsg(4326)
110
+
111
112
+def test_export_plan_hdf():
113
+ args = parse_args(["mesh_cell_points", str(BALD_EAGLE_P18)])
114
+ exported = json.loads(export(args))
115
+ gdf = gpd.GeoDataFrame.from_features(exported)
116
+ assert len(gdf) == 4425
0 commit comments