Skip to content

Commit

Permalink
update test to include tanks
Browse files Browse the repository at this point in the history
  • Loading branch information
kbonney committed Oct 10, 2024
1 parent e1f33e2 commit 6ec2b61
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified examples/data/Net1_elevation_data.tif
Binary file not shown.
2 changes: 1 addition & 1 deletion wntr/tests/test_gis.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def setUpClass(self):
inp_file = join(ex_datadir, "Net1.inp")
wn = wntr.network.WaterNetworkModel(inp_file)
wn_gis = wn.to_gis(crs="EPSG:4326")
points = wn_gis.junctions
points = pd.concat((wn_gis.junctions, wn_gis.tanks))
self.points = points

min_lon, min_lat, max_lon, max_lat = self.points.total_bounds
Expand Down

0 comments on commit 6ec2b61

Please sign in to comment.